/* =============================================================================
   il Bilaterale — Main Stylesheet
   Brand: #0B1517 (dark bg), #CA9C5E (gold accent), #FFFFFF (text)
   Fonts: Lato (body/nav), Jost (buttons), Kristi (decorative)
   ============================================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }
body {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    background-color: #0b1517;
    color: #ffffff;
    min-height: 100%;
}
a { color: #ca9c5e; text-decoration: none; }
a:hover, a:active { color: #ffffff; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
}
h1 { font-size: 34px; }
h2 { font-size: 30px; }
h3 { font-size: 26px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
img { max-width: 100%; height: auto; image-rendering: optimizeQuality; }
p { padding-top: .1em; padding-bottom: .1em; }
em { font-style: italic; }
::selection { background: #ffffff; color: #0b1517; }

/* ---- Loader ---- */
#loftloader-wrapper {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
}
#loftloader-wrapper .loader-section {
    position: absolute; inset: 0;
    background: #000000;
    opacity: 0.95;
}
#loftloader-wrapper .loader-inner { position: relative; z-index: 1; }
#loftloader-wrapper #loader { text-align: center; }
#loftloader-wrapper #loader img { width: 270px; }
#loftloader-wrapper.loaded { display: none; }

/* ---- Wrapper ---- */
#wrapper { position: relative; }
#wrapper.hasbg.transparent > #elementor-header { background: transparent; position: absolute; top: 0; left: 0; right: 0; z-index: 100; }

/* ---- Layout helpers ---- */
.elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header ---- */
.main-menu-wrapper {
    width: 100%;
    background-color: #0b1517;
    border-bottom: 1px solid #0b1517;
}
#elementor-header.main-menu-wrapper {
    background: transparent;
    border: none;
}
/* On non-home pages: keep header in normal flow so page titles aren't hidden behind it */
body:not(.home) #wrapper.hasbg.transparent > #elementor-header {
    position: relative;
    background-color: #0b1517;
    top: auto; left: auto; right: auto;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 0;
}
.header-logo img { width: 150px; }
.header-nav .nav {
    list-style: none;
    display: flex;
    gap: 40px;
}
.header-nav .nav li a {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.2s;
}
.header-nav .nav li a:hover,
.header-nav .nav li.current-menu-item > a {
    color: #ca9c5e;
}
.header-right { display: flex; align-items: center; gap: 20px; }

/* ---- Language Switcher ---- */
.lang-switcher { display: flex; align-items: center; gap: 2px; }
@media (max-width: 767px) { .lang-switcher { display: none; } }
.lang-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 3px;
    opacity: 0.45;
    transition: opacity 0.2s;
}
.lang-link:hover { opacity: 0.85; }
.lang-link.active { opacity: 1; }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-code {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
}
.lang-link.active .lang-code { color: #ca9c5e; }

/* Sticky header */
#elementor-sticky-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background-color: #0b1517;
    animation: slideDown 0.5s ease;
}
#elementor-sticky-header .header-inner { padding: 20px 0; }
#elementor-sticky-header .header-logo img { width: 120px; }

/* ---- Social Icons ---- */
.social-icons-grid { display: flex; gap: 1px; }
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 18px;
    background: transparent;
    color: #ffffff;
    transition: opacity 0.2s;
}
.social-icon:hover { opacity: 0.75; color: #ffffff; }

/* ---- Mobile Menu ---- */
.mobile_menu_wrapper {
    position: fixed;
    top: 0; right: 0;
    width: 320px; height: 100%;
    background: #0b1517;
    z-index: 10000;
    transform: translateX(320px);
    transition: transform 0.35s ease;
    padding: 60px 30px 30px;
    overflow-y: auto;
}
.mobile_menu_wrapper.open { transform: translateX(0); }
#close_mobile_menu {
    position: absolute; top: 20px; right: 20px;
    font-size: 22px; color: #ffffff; cursor: pointer;
}
.mobile_main_nav { list-style: none; }
.mobile_main_nav li a {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 2;
    transition: color 0.2s;
}
.mobile_main_nav li a:hover,
.mobile_main_nav li.current-menu-item a { color: #ca9c5e; }
.mobile-lang-switcher {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 16px;
}
.mobile-lang-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 10px 20px;
    opacity: 0.45;
    transition: opacity 0.2s;
}
.mobile-lang-link:hover { opacity: 0.85; }
.mobile-lang-link.active { opacity: 1; }
.mobile-lang-link.active .lang-code { color: #ca9c5e; }
.mobile-lang-link .lang-flag { font-size: 20px; }
.mobile-lang-link .lang-code { font-size: 13px; letter-spacing: 1px; color: #ffffff; }
#mobile_nav_icon,
#mobile_nav_icon_sticky {
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 16px 10px 10px;
    margin-right: -16px; /* cancel out so layout doesn't shift */
}

/* ---- Page Content ---- */
#page_content_wrapper { position: relative; }
.sidebar_content.full_width { width: 100%; }

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1517 url('/images/bg-main.jpg') center/cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: rgba(11,21,23,0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* Ornamental top flourish */
.hero-ornament {
    width: 60px;
    height: 1px;
    background: #ca9c5e;
    margin-bottom: 28px;
    position: relative;
}
.hero-ornament::before,
.hero-ornament::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 6px;
    height: 6px;
    border: 1px solid #ca9c5e;
    transform: rotate(45deg);
}
.hero-ornament::before { left: -10px; }
.hero-ornament::after  { right: -10px; }

/* "il" in Kristi script */
.hero-script {
    font-family: 'Kristi', cursive;
    font-size: clamp(64px, 10vw, 110px);
    color: #ca9c5e;
    line-height: 0.85;
    margin: 0;
    letter-spacing: 2px;
}

/* "BILATERALE" in wide caps */
.hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(38px, 8vw, 86px);
    font-weight: 700;
    letter-spacing: clamp(8px, 2vw, 22px);
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 1;
}

/* Thin gold rule with diamonds */
.hero-rule {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    width: min(400px, 80vw);
}
.hero-rule::before,
.hero-rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(202,156,94,0.5);
}
.hero-rule::after { }

.hero-diamond {
    width: 6px;
    height: 6px;
    background: #ca9c5e;
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: 0.8;
}

/* Subtitle */
.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: clamp(13px, 1.8vw, 16px);
    font-style: italic;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.3px;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 560px;
}
@media (max-width: 600px) {
    .hero-br { display: none; }
}

/* Rustic button */
.btn-rustic, a.btn-rustic {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ca9c5e;
    text-decoration: none;
    padding: 14px 36px;
    border: 1px solid rgba(202,156,94,0.6);
    outline: 1px solid transparent;
    outline-offset: 4px;
    transition: color 0.25s, border-color 0.25s, outline-color 0.25s, background 0.25s;
    position: relative;
}
.btn-rustic:hover, a.btn-rustic:hover {
    color: #ffffff;
    border-color: #ca9c5e;
    outline-color: rgba(202,156,94,0.35);
    background: rgba(202,156,94,0.08);
}

/* ---- Buttons ---- */
.btn, a.btn, button.btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.7;
    padding: 1em 1.7em;
    border-radius: 5px;
    border: 1px solid #ca9c5e;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary, a.btn-primary {
    background: #ca9c5e;
    color: #ffffff;
    border-color: #ca9c5e;
}
.btn-primary:hover {
    background: #ffffff;
    color: #cfa670;
    border-color: #cfa670;
}
.btn-outline, a.btn-outline {
    background: transparent;
    color: #ca9c5e;
    border-color: #ca9c5e;
}
.btn-outline:hover {
    background: #ca9c5e;
    color: #ffffff;
}

/* ---- Leaf / decoration sections ---- */
.leaf-section {
    width: 100%;
    overflow: visible;
    pointer-events: none;
    position: relative;
    z-index: 1;
    margin-top: -220px;
}
.leaf-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.leaf-right {
    position: relative;
    top: -80px; /* right leaf sits slightly higher, matching the original absolute placement */
}

/* ---- About Section ---- */
.about-section { padding: 60px 0; }
.about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.about-photo img { width: 100%; border-radius: 4px; }
.about-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 20px 40px;
}
.about-deco-inner {
    border-left: 1px solid #ca9c5e;
    padding-left: 32px;
}
.about-deco-heading {
    font-family: 'Jost', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ca9c5e;
    line-height: 1.3;
    margin: 0 0 20px;
}
.about-deco-body {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

/* ---- Divider ---- */
.section-divider {
    border-top: 1px solid #ca9c5e;
    margin: 40px auto;
    max-width: 1200px;
}

/* ---- Deco section ---- */
.deco-section {
    overflow: hidden;
    padding: 40px 0;
}
/* Break out of the elementor-container max-width so leaves bleed to viewport edges */
.deco-section .deco-container {
    max-width: none;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.deco-left {
    flex-shrink: 0;
    transform: translateX(-50%); /* slide half off the left edge */
}
.deco-right {
    flex-shrink: 0;
    transform: translateX(50%);  /* slide half off the right edge */
}
.deco-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    padding-top: 60px;
}
.deco-section-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.deco-hashtag {
    font-family: 'Kristi', cursive;
    font-size: clamp(52px, 8vw, 96px);
    color: #ca9c5e;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}
@media (max-width: 767px) {
    .deco-hashtag { font-size: 38px; }
}

/* ---- Instagram Section ---- */
.instagram-section { padding: 60px 0; margin-top: -400px; position: relative; z-index: 2; }
.instagram-header { text-align: center; margin-bottom: 30px; }
.instagram-header a { display: flex; align-items: center; justify-content: center; gap: 10px; color: #ffffff; }
.instagram-header h3 { font-size: 20px; color: #ffffff; }
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.instagram-item img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }
.instagram-fallback { text-align: center; padding: 40px 0; }

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

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.reviews-summary { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.reviews-rating-label { font-size: 20px; font-weight: 700; color: #ffffff; }
.reviews-stars { color: #589442; font-size: 22px; letter-spacing: 2px; }
.reviews-count { font-size: 13px; color: rgba(255,255,255,0.7); }
.reviews-logo-link img { filter: invert(1); opacity: 0.8; }
.reviews-logo-link:hover img { opacity: 1; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 24px;
}
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-name { font-weight: 700; font-size: 14px; color: #ffffff; }
.review-date { font-size: 12px; color: rgba(255,255,255,0.5); }
.review-stars { color: #589442; font-size: 16px; letter-spacing: 1px; margin-bottom: 8px; }
.review-title { font-size: 14px; color: #ffffff; display: block; margin-bottom: 8px; }
.review-text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0; }

/* ---- Page Caption ---- */
#page_caption {
    background-color: #0b1517;
    padding: 60px 20px;
    text-align: center;
}
#page_caption h1 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
}
#page_caption.hasbg {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b1517 url('/images/bg-main.jpg') center/cover no-repeat;
}

.page-caption-hero {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.page-caption-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(48px, 10vw, 110px);
    font-weight: 700;
    letter-spacing: clamp(10px, 3vw, 28px);
    padding-left: clamp(10px, 3vw, 28px); /* compensate trailing letter-spacing to visually center */
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 24px;
    line-height: 1;
}
.page-caption-sub {
    font-family: 'Lato', sans-serif;
    font-size: clamp(13px, 1.8vw, 16px);
    font-style: italic;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.7);
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
    margin: 0;
    line-height: 1.7;
}

/* ---- Menu Page ---- */
.menu-section-nav {
    position: sticky;
    top: 0; /* overridden by JS to sit flush below the sticky header */
    z-index: 200;
    background-color: #0b1517;
    border-bottom: 1px solid rgba(202,156,94,0.3);
}
.menu-section-nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0 20px;
}
.menu-section-nav-link {
    display: inline-block;
    padding: 14px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(202,156,94,0.7);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.menu-section-nav-link:hover,
.menu-section-nav-link.active {
    color: #ca9c5e;
    border-bottom-color: #ca9c5e;
}
@media (max-width: 640px) {
    .menu-section-nav-inner {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }
    .menu-section-nav-inner::-webkit-scrollbar { display: none; }
    .menu-section-nav-link { padding: 12px 12px; font-size: 10px; }
}

.menu-page-content { padding: 60px 20px 60px; }
.menu-section { margin-bottom: 70px; }

.menu-section-heading {
    display: flex;
    align-items: baseline;
    gap: 14px;
    border-bottom: 1px solid #ca9c5e;
    padding-bottom: 12px;
    margin-bottom: 30px;
}
.menu-section-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ca9c5e;
    margin: 0;
}
.menu-section-subtitle {
    font-size: 13px;
    color: rgba(202,156,94,0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu-group-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin: 28px 0 14px;
}
.menu-group-note {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    margin: -8px 0 16px;
}

.menu-items-list { display: flex; flex-direction: column; gap: 18px; }
.menu-item { padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}
.menu-item-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}
.menu-item-allergens { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 400; }
.menu-item-price {
    font-size: 14px;
    color: #ca9c5e;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 700;
}
.menu-item-note {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    margin-top: 3px;
}
.menu-item-description {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
    line-height: 1.6;
}

.menu-allergens-legend {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.menu-allergens-legend p {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    line-height: 1.8;
}
.menu-placeholder { text-align: center; padding: 80px 20px; }

/* ---- Contact Page ---- */
.contact-page-content { padding: 60px 20px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.contact-details, .opening-hours { list-style: none; margin: 20px 0 40px; }
.contact-details li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.contact-details li i { color: #ca9c5e; width: 18px; text-align: center; }
.opening-hours li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(202,156,94,0.3); }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ca9c5e;
    margin-bottom: 6px;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
    width: 100%;
    background: #0b1517;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 12px 14px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    border-radius: 0;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ca9c5e;
}
.contact-form .is-invalid { border-color: #dc3232; }
.field-error { color: #dc3232; font-size: 12px; margin-top: 4px; display: block; }
.alert { padding: 12px 16px; margin-bottom: 20px; border-radius: 4px; }
.alert-success { background: rgba(70,180,80,0.2); border: 1px solid #46b450; color: #46b450; }

/* ---- Footer ---- */
#footer-wrapper {
    background: #0b1517;
    margin-top: 40px;
    margin-bottom: 100px;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
}
.footer-logo img { width: 230px; }
.footer-info { text-align: right; }
.footer-copyright { font-size: 12px; color: #ffffff; line-height: 1.8; }
.footer-links { list-style: none; margin-top: 10px; }
.footer-links li a { font-size: 12px; color: #ca9c5e; transition: color 0.2s; }
.footer-links li a:hover { color: #ffffff; }

/* ---- Back to Top ---- */
#toTop {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 40px; height: 40px;
    background: rgba(0,0,0,0.4);
    color: #ffffff;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    z-index: 900;
    transition: background 0.2s;
}
#toTop:hover { background: #ca9c5e; color: #ffffff; }

/* ---- Animations ---- */
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---- Visibility helpers ---- */
.desktop-only { display: block; }
.mobile-only  { display: none; }

/* =============================================================================
   Responsive
   ============================================================================= */
@media (max-width: 1024px) {
    .instagram-section { margin-top: 0; }
    .about-container { grid-template-columns: 1fr; }
    .about-deco { padding: 0; }
    .about-deco-inner { border-left: none; border-top: 1px solid #ca9c5e; padding-left: 0; padding-top: 28px; margin-top: 10px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { flex-direction: column; gap: 30px; text-align: center; }
    .footer-info { text-align: center; }
}

@media (max-width: 767px) {
    .header-inner,
    #elementor-sticky-header .header-inner { padding: 20px; }
    .header-logo img { width: 120px; }
    .header-nav { display: none; }
    .desktop-only { display: none !important; }
    .mobile-only  { display: block !important; }
    .instagram-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-header { flex-direction: column; align-items: flex-start; }
    .contact-grid { grid-template-columns: 1fr; }
    #page_caption h1 { font-size: 36px; }
    .page-caption-title { font-size: clamp(36px, 12vw, 64px); letter-spacing: 8px; }
    .deco-left img, .deco-right img { width: 220px; height: auto; }
    .footer-logo img { width: 160px; }
}
