@font-face {
    font-family: 'Lobster';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/lobster-400-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/open-sans-400-700-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/open-sans-400-700-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/open-sans-400-700-latin.woff2') format('woff2');
}

#jaroons-landing {
    --primary-red: #d32f2f;
    --primary-dark: #b71c1c;
    --accent-blue: #1565c0;
    --dark-bg: #1a1a1a;
    --light-bg: #f9f9f9;
    --text-color: #333;
    --white: #fff;
    --font-head: 'Lobster', cursive;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

#jaroons-landing * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#jaroons-landing h1,
#jaroons-landing h2,
#jaroons-landing h3,
#jaroons-landing h4 {
    font-family: var(--font-head);
    font-weight: 400;
}

#jaroons-landing a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

#jaroons-landing ul {
    list-style: none;
}

#jaroons-landing img {
    max-width: 100%;
    height: auto;
    display: block;
}

#jaroons-landing .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

#jaroons-landing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
}

#jaroons-landing .btn-primary {
    background-color: var(--primary-red);
    color: var(--white) !important;
    
}

#jaroons-landing .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    
}

#jaroons-landing .btn-outline {
    background-color: transparent;
    color: var(--white) !important;
    border: 2px solid var(--white);
}

#jaroons-landing .btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-bg) !important;
}

#jaroons-landing .btn-secondary {
    background-color: var(--dark-bg);
    color: var(--white) !important;
}

#jaroons-landing .btn-secondary:hover {
    background-color: #333;
}

#jaroons-landing header {
    background-color: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 0;
    border-top: 0;
    transition: all 0.4s ease;
    z-index: 1000;
}

#jaroons-landing header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.625rem 0;
    border-top: 5px solid var(--primary-red);
}

#jaroons-landing .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: none;
    min-height: 69px;
}

#jaroons-landing .logo {
    display: flex;
    align-items: center;
    min-height: 63px;
    z-index: 1001;
}

#jaroons-landing .logo img {
    height: 50px;
    width: auto;
    transition: height 0.3s;
}

#jaroons-landing .logo-text {
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--white);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

#jaroons-landing header.scrolled .logo-text {
    color: var(--primary-red);
    text-shadow: none;
}

#jaroons-landing .nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

#jaroons-landing .nav-links > a,
#jaroons-landing .nav-links > .nav-link-trigger,
#jaroons-landing .nav-menu-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

#jaroons-landing .nav-links > a.nav-btn {
    padding: 10px 26px;
    border: 1px solid rgba(211, 47, 47, 0.7);
    border-radius: 50px;
    background: transparent;
    color: var(--white) !important;
    box-shadow: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#jaroons-landing .nav-links > a.nav-btn:hover {
    color: var(--white) !important;
    border-color: rgba(211, 47, 47, 0.9);
    box-shadow: none;
}

#jaroons-landing header.scrolled .nav-links > a,
#jaroons-landing header.scrolled .nav-links > .nav-link-trigger,
#jaroons-landing header.scrolled .nav-menu-toggle {
    color: var(--text-color);
    text-shadow: none;
}

#jaroons-landing header.scrolled .nav-links > a.nav-btn {
    border-color: transparent;
    background: transparent;
    color: var(--text-color) !important;
    text-shadow: none;
}

#jaroons-landing header.scrolled .nav-links > a.nav-btn:hover {
    background: transparent;
    color: var(--primary-red) !important;
}

#jaroons-landing .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

#jaroons-landing .nav-item-has-submenu::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 18px;
}

#jaroons-landing .nav-menu-toggle i {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

#jaroons-landing .nav-item-has-submenu.submenu-open .nav-menu-toggle i,
#jaroons-landing .nav-item-has-submenu:hover .nav-menu-toggle i,
#jaroons-landing .nav-item-has-submenu:focus-within .nav-menu-toggle i {
    transform: rotate(180deg);
}

#jaroons-landing .nav-links > a:not(.btn):hover,
#jaroons-landing .nav-links > .nav-link-trigger:hover,
#jaroons-landing .nav-menu-toggle:hover {
    color: var(--primary-red);
}

#jaroons-landing .nav-links > a:not(.btn)::after,
#jaroons-landing .nav-links > .nav-link-trigger::after,
#jaroons-landing .nav-menu-toggle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s;
}

#jaroons-landing .nav-links > a:not(.btn):hover::after,
#jaroons-landing .nav-links > .nav-link-trigger:hover::after,
#jaroons-landing .nav-menu-toggle:hover::after,
#jaroons-landing .nav-item-has-submenu.submenu-open .nav-menu-toggle::after,
#jaroons-landing .nav-item-has-submenu:focus-within .nav-menu-toggle::after {
    width: 100%;
}

#jaroons-landing .nav-submenu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 220px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(17, 17, 17, 0.96);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38);
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#jaroons-landing .nav-item-has-submenu.submenu-open .nav-submenu,
#jaroons-landing .nav-links > .nav-link-trigger {
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    text-align: left;
}

#jaroons-landing .nav-item-has-submenu:hover .nav-submenu,
#jaroons-landing .nav-item-has-submenu:focus-within .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

#jaroons-landing .nav-submenu-link {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

#jaroons-landing .nav-submenu-link:hover,
#jaroons-landing .nav-submenu-link:focus {
    background: rgba(211, 47, 47, 0.16);
    color: #ffd2d2;
}

#jaroons-landing .menu-overlay[hidden] {
    display: none !important;
}

#jaroons-landing .menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.5rem 2rem 2rem;
}

#jaroons-landing .menu-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(8px);
}

#jaroons-landing .menu-overlay-dialog {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    max-height: calc(100vh - 9rem);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background:
        radial-gradient(circle at top, rgba(211, 47, 47, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(26, 26, 26, 0.98), rgba(10, 10, 10, 0.98));
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

#jaroons-landing .menu-overlay-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

#jaroons-landing .menu-overlay-close:hover {
    background: rgba(211, 47, 47, 0.2);
    transform: rotate(90deg);
}

#jaroons-landing .menu-overlay-header {
    padding-right: 4rem;
}

#jaroons-landing .menu-overlay-kicker {
    margin-bottom: 0.35rem;
    color: #f3b4b4;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

#jaroons-landing .menu-overlay-header h2 {
    color: var(--white);
    font-size: 3rem;
}

#jaroons-landing .menu-overlay-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.25rem;
}

#jaroons-landing .menu-overlay-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #f3f3f3;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

#jaroons-landing .menu-overlay-tab.is-active,
#jaroons-landing .menu-overlay-tab:hover {
    border-color: rgba(211, 47, 47, 0.55);
    background: rgba(211, 47, 47, 0.2);
    color: var(--white);
}

#jaroons-landing .menu-overlay-panel {
    margin-top: 1.5rem;
}

#jaroons-landing .menu-overlay-stage {
    display: grid;
    grid-template-columns: minmax(54px, auto) minmax(0, 1fr) minmax(54px, auto);
    gap: 1rem;
    align-items: center;
}

#jaroons-landing .menu-overlay-arrow[data-menu-overlay-prev] {
    grid-column: 1;
}

#jaroons-landing .menu-overlay-viewport {
    grid-column: 2;
}

#jaroons-landing .menu-overlay-arrow[data-menu-overlay-next] {
    grid-column: 3;
}

#jaroons-landing .menu-overlay-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

#jaroons-landing .menu-overlay-arrow:hover:not(:disabled) {
    background: rgba(211, 47, 47, 0.24);
    transform: scale(1.04);
}

#jaroons-landing .menu-overlay-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

#jaroons-landing .menu-overlay-viewport {
    min-height: min(66vh, 760px);
    padding: 1.25rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

#jaroons-landing .menu-overlay-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#jaroons-landing .menu-overlay-page[hidden] {
    display: none;
}

#jaroons-landing .menu-overlay-page img {
    width: auto;
    max-width: min(100%, 860px);
    max-height: min(60vh, 920px);
    border-radius: 18px;
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.42);
}

#jaroons-landing .menu-overlay-meta {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    color: #d8d8d8;
    font-size: 0.95rem;
    font-weight: 700;
}

#jaroons-landing .arrival-overlay .menu-overlay-dialog {
    width: min(980px, 100%);
    max-height: calc(100vh - 8.5rem);
    padding: 2rem 2.1rem 1.85rem;
    border: 1px solid rgba(102, 82, 61, 0.14);
    background:
        radial-gradient(circle at top, rgba(182, 129, 80, 0.12), transparent 48%),
        linear-gradient(180deg, rgba(247, 243, 234, 0.99), rgba(241, 234, 223, 0.99));
    box-shadow: 0 28px 60px rgba(59, 44, 29, 0.22);
    overflow: auto;
}

#jaroons-landing .arrival-overlay .menu-overlay-backdrop {
    background: rgba(39, 29, 21, 0.34);
    backdrop-filter: blur(6px);
}

#jaroons-landing .arrival-overlay .menu-overlay-close {
    background: rgba(74, 56, 39, 0.08);
    color: #2a2019;
}

#jaroons-landing .arrival-overlay .menu-overlay-close:hover {
    background: rgba(150, 102, 67, 0.16);
}

#jaroons-landing .arrival-overlay .menu-overlay-header {
    padding: 0 4.25rem 0 1.1rem;
}

#jaroons-landing .arrival-overlay .menu-overlay-kicker {
    color: #8a5d3d;
}

#jaroons-landing .arrival-overlay .menu-overlay-header h2 {
    color: #1f1813;
    font-size: 1.5rem;
    line-height: 1.2;
}

#jaroons-landing .arrival-overlay-intro {
    max-width: 58ch;
    margin-top: 1rem;
    color: #4b4038;
    font-size: 1.02rem;
    line-height: 1.62;
}

#jaroons-landing .arrival-overlay-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.85rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

#jaroons-landing .arrival-overlay-primary {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2rem;
    align-items: start;
}

#jaroons-landing .arrival-overlay-section {
    padding: 0;
    background: transparent;
}

#jaroons-landing .arrival-overlay-section-primary h3 {
    font-size: 1.45rem;
}

#jaroons-landing .arrival-overlay-section-primary .arrival-overlay-hours li strong {
    font-size: 1.04rem;
}

#jaroons-landing .arrival-overlay-section h3 {
    margin-bottom: 0.75rem;
    color: #261d17;
    font-size: 1.32rem;
    font-weight: 700;
}

#jaroons-landing .arrival-overlay-section p {
    
    color: #372d27;
    font-size: 1rem;
    line-height: 1.62;
}

#jaroons-landing .arrival-overlay-section-secondary {
    padding-top: 0.2rem;
}

#jaroons-landing .arrival-overlay-address {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
}

#jaroons-landing .arrival-overlay-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

#jaroons-landing .arrival-overlay-list li + li {
    margin-top: 0.75rem;
}

#jaroons-landing .arrival-overlay-hours li strong {
    display: block;
    margin-bottom: 0.1rem;
    color: #241b15;
    font-size: 0.93rem;
    line-height: 1.35;
}

#jaroons-landing .arrival-overlay-hours li span,
#jaroons-landing .arrival-overlay-address li,
#jaroons-landing .arrival-overlay-parking-rates li {
    color: #433731;
    line-height: 1.48;
}

#jaroons-landing .arrival-overlay-hours li span {
    font-size: 0.92rem;
}

#jaroons-landing .arrival-overlay-address li {
    font-size: 0.98rem;
    line-height: 1.42;
    text-align: left;
}

#jaroons-landing .arrival-overlay-address li + li {
    margin-top: 0.25rem;
}

#jaroons-landing .arrival-overlay-address a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(67, 55, 49, 0.24);
    transition: color 0.2s ease, border-color 0.2s ease;
}

#jaroons-landing .arrival-overlay-address a:hover,
#jaroons-landing .arrival-overlay-address a:focus-visible {
    color: #241b15;
    border-color: rgba(36, 27, 21, 0.34);
}

#jaroons-landing .arrival-overlay-section-travel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 2rem;
    row-gap: 1rem;
    align-items: start;
    width: 100%;
    max-width: none;
}

#jaroons-landing .arrival-overlay-section-travel > h3 {
    margin: 0;
}

#jaroons-landing .arrival-overlay-subsection + .arrival-overlay-subsection {
    margin-top: 1.45rem;
}

#jaroons-landing .arrival-overlay-subsection h4 {
    margin-bottom: 0.45rem;
    color: #2e2219;
    font-size: 1.02rem;
    font-weight: 700;
}

#jaroons-landing .arrival-overlay-subsection-highlight {
    margin-top: 1.6rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: inset 0 0 0 1px rgba(148, 112, 80, 0.12);
}

#jaroons-landing .arrival-overlay-parking-rates li {
    padding-left: 1.1rem;
    position: relative;
}

#jaroons-landing .arrival-overlay-parking-rates li::before {
    content: '';
    position: absolute;
    top: 0.68rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b97949;
}

#jaroons-landing .arrival-overlay-note {
    margin-top: 0.85rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #6a5a4d;
    font-size: 1.41rem;
    line-height: 1.5;
    font-style: italic;
}

#jaroons-landing .arrival-overlay-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0;
    justify-self: end;
    align-self: start;
}

#jaroons-landing .arrival-overlay-actions .btn {
    min-width: 0;
}

#jaroons-landing .arrival-overlay-actions .btn-primary {
    background-color: var(--primary-red);
    color: var(--white) !important;
    
}

#jaroons-landing .arrival-overlay-actions .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    
}

#jaroons-landing .arrival-overlay-actions .btn {
    padding: 0.525rem 1.225rem;
    font-size: 0.63rem;
    letter-spacing: 0.7px;
}

#jaroons-landing .arrival-overlay-section .arrival-overlay-note {
    font-size: 0.65rem;
    line-height: 1.35;
}

#jaroons-landing .arrival-overlay-section-travel .arrival-overlay-subsection,
#jaroons-landing .arrival-overlay-section-travel .arrival-overlay-subsection-highlight {
    grid-column: 1 / -1;
}

#jaroons-landing .arrival-overlay-actions .btn-outline,
#jaroons-landing .arrival-overlay-actions .btn-outline:hover {
    background: transparent;
    border-color: rgba(68, 54, 45, 0.24);
    color: #3b2f28;
}

#jaroons-landing .arrival-overlay-actions .btn-outline:hover {
    border-color: rgba(68, 54, 45, 0.32);
    color: #241b15;
    transform: none;
}

#jaroons-landing .mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    z-index: 1002;
}

#jaroons-landing .mobile-toggle .burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
}

#jaroons-landing .mobile-toggle .burger span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

#jaroons-landing header.scrolled .mobile-toggle .burger span,
#jaroons-landing .mobile-toggle.is-active .burger span {
    background: var(--dark-bg);
}

#jaroons-landing .mobile-toggle.is-active .burger span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

#jaroons-landing .mobile-toggle.is-active .burger span:nth-child(2) {
    opacity: 0;
}

#jaroons-landing .mobile-toggle.is-active .burger span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

#jaroons-landing .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    height: 85vh;
    text-align: center;
    color: var(--white);
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), var(--jaroons-hero-image, none);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

#jaroons-landing .hero-content {
    width: 100%;
    margin-top: 60px;
    animation: fadeIn 1s ease-out;
}

#jaroons-landing .hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 5px 15px;
    border-radius: 20px;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#jaroons-landing .hero-content h1 {
    margin-bottom: 0.5rem;
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#jaroons-landing .hero-subtitle {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-family: var(--font-head);
    color: #ddd;
}

#jaroons-landing .hero-content p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    color: #eee;
}

#jaroons-landing .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

#jaroons-landing .features {
    padding: clamp(1.9rem, 4.2vw, 3.9rem) 0 clamp(3.5rem, 6vw, 4.75rem);
    background: linear-gradient(180deg, #ffffff 0%, #fdf8f2 62%, #fbf4eb 100%);
}

#jaroons-landing .features-header {
    max-width: 760px;
    margin: 0 auto clamp(2.35rem, 4vw, 3.4rem);
    text-align: center;
}

#jaroons-landing .features-header p {
    max-width: 920px;
}

#jaroons-landing .features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.2rem, 2vw, 1.75rem);
    align-items: stretch;
}

#jaroons-landing .feature-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(86, 56, 36, 0.1);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 238, 228, 0.96) 100%);
    box-shadow: 0 20px 38px rgba(74, 48, 28, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: left;
}

#jaroons-landing .feature-card:hover {
    /* transform: translateY(-6px); */
    /* border-color: rgba(211, 47, 47, 0.18); */
    /* box-shadow: 0 28px 46px rgba(74, 48, 28, 0.12); */
}

#jaroons-landing .feature-card-media {
    position: relative;
    overflow: hidden;
    min-height: 250px;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #ead8c4, #d6b89b);
}

#jaroons-landing .feature-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 24, 18, 0.04) 0%, rgba(31, 24, 18, 0.22) 100%);
}

#jaroons-landing .feature-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

#jaroons-landing .feature-card:hover .feature-card-media img {
    /* transform: scale(1.04); */
}

#jaroons-landing .feature-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1.2rem;
    padding: clamp(1.55rem, 2.8vw, 2.1rem);
}

#jaroons-landing .feature-card.is-text-only {
    background:
        radial-gradient(circle at top right, rgba(211, 47, 47, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 251, 247, 0.98) 0%, rgba(244, 233, 220, 0.96) 100%);
}

#jaroons-landing .feature-card.is-text-only .feature-card-body {
    justify-content: flex-end;
    min-height: 100%;
    padding-top: clamp(2rem, 5vw, 3rem);
}

#jaroons-landing .feature-card h3 {
    margin: 0;
    font-size: clamp(1.48rem, 1.9vw, 1.95rem);
    color: var(--dark-bg);
    line-height: 1.08;
    text-wrap: balance;
}

#jaroons-landing .feature-card p {
    margin: auto 0 0;
    color: #5f5348;
    font-size: 1rem;
    line-height: 1.7;
}

#jaroons-landing .feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.4rem;
    color: var(--dark-bg);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
}

#jaroons-landing .feature-card-link::after {
    content: "\2192";
    transition: transform 0.2s ease;
}

#jaroons-landing .feature-card-link:hover::after {
    transform: translateX(3px);
}

#jaroons-landing .features-note {
    max-width: 760px;
    margin: 1.8rem auto 0;
    color: #715f4f;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

#jaroons-landing .trust-usp {
    padding: 0 0 5.5rem;
    background-color: var(--white);
}

#jaroons-landing .trust-usp-shell {
    padding: clamp(2rem, 4vw, 3.2rem);
    border: 1px solid rgba(85, 53, 32, 0.1);
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(211, 47, 47, 0.12), transparent 34%),
        linear-gradient(180deg, #fff9f3 0%, #f4eadf 100%);
    box-shadow: 0 22px 40px rgba(74, 48, 28, 0.08);
}

#jaroons-landing .trust-usp-header {
    max-width: 760px;
    margin: 0 auto 2.75rem;
}

#jaroons-landing .trust-usp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

#jaroons-landing .trust-usp-item {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.35rem 1.4rem;
    border: 1px solid rgba(85, 53, 32, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 24px rgba(74, 48, 28, 0.06);
}

#jaroons-landing .trust-usp-item-head {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 0.75rem;
}

#jaroons-landing .trust-usp-item-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(211, 47, 47, 0.12);
    color: var(--primary-red);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

#jaroons-landing .trust-usp-item h3 {
    color: var(--dark-bg);
    font-size: 1.65rem;
    line-height: 1.05;
}

#jaroons-landing .trust-usp-item p {
    color: #5f5348;
}

#jaroons-landing .trust-usp-note {
    margin-top: 1.5rem;
    color: #715f4f;
    font-size: 0.98rem;
    font-weight: 700;
    text-align: center;
}

#jaroons-landing .weekly-highlight {
    padding: 80px 0 clamp(4rem, 6vw, 5.75rem);
    background: #ffffff;
}

#jaroons-landing .weekly-highlight-shell {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

#jaroons-landing .weekly-highlight-header {
    max-width: 760px;
    margin: 0 auto 2.1rem;
    text-align: center;
}

#jaroons-landing .weekly-highlight-switches {
    display: flex;
    justify-content: flex-start;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(86, 56, 36, 0.12);
}

#jaroons-landing .weekly-highlight-switch {
    position: relative;
    padding: 0 0 0.8rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #7a6655;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.25s ease, opacity 0.25s ease;
}

#jaroons-landing .weekly-highlight-switch::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

#jaroons-landing .weekly-highlight-switch:hover,
#jaroons-landing .weekly-highlight-switch.is-active {
    color: var(--dark-bg);
    opacity: 1;
}

#jaroons-landing .weekly-highlight-switch.is-active::after,
#jaroons-landing .weekly-highlight-switch:hover::after {
    transform: scaleX(1);
}

#jaroons-landing .weekly-highlight-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(1.75rem, 3.4vw, 3rem);
    align-items: stretch;
}

#jaroons-landing .weekly-highlight-panel[hidden] {
    display: none !important;
}

#jaroons-landing .weekly-highlight-media {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ead8c4, #d6b89b);
    box-shadow: 0 24px 44px rgba(74, 48, 28, 0.12);
}

#jaroons-landing .weekly-highlight-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 24, 18, 0.03) 0%, rgba(31, 24, 18, 0.2) 100%);
    pointer-events: none;
}

#jaroons-landing .weekly-highlight-media-stage {
    position: relative;
    min-height: inherit;
    height: 100%;
}

#jaroons-landing .weekly-highlight-media-slide {
    position: absolute;
    inset: 0;
    margin: 0;
}

#jaroons-landing .weekly-highlight-media-slide[hidden] {
    display: none !important;
}

#jaroons-landing .weekly-highlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#jaroons-landing .weekly-highlight-media-nav {
    position: absolute;
    top: 50%;
    right: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

#jaroons-landing .weekly-highlight-media-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border: 0;
    border-radius: 999px;
    background: rgba(19, 16, 13, 0.62);
    color: #fffaf5;
    cursor: pointer;
    pointer-events: auto;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

#jaroons-landing .weekly-highlight-media-arrow:hover,
#jaroons-landing .weekly-highlight-media-arrow:focus {
    background: rgba(19, 16, 13, 0.78);
    transform: scale(1.04);
    outline: none;
}

#jaroons-landing .mobile-card-slider {
    position: relative;
}

#jaroons-landing .mobile-card-slider-nav {
    display: none;
}

#jaroons-landing .mobile-card-slider-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

#jaroons-landing .mobile-card-slider-track.is-dragging {
    scroll-snap-type: none;
}

#jaroons-landing .weekly-highlight-media-dots {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
}

#jaroons-landing .weekly-highlight-media-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.44);
}

#jaroons-landing .weekly-highlight-media-dot.is-active {
    background: rgba(255, 250, 245, 0.95);
}

#jaroons-landing .weekly-highlight-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(1.5rem, 3vw, 2.35rem) 0;
}

#jaroons-landing .weekly-highlight-copy {
    max-width: 32rem;
}

#jaroons-landing .weekly-highlight-kicker {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--primary-red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

#jaroons-landing .weekly-highlight-content h3 {
    margin: 0 0 1rem;
    color: var(--dark-bg);
    font-size: clamp(2.3rem, 4vw, 3.85rem);
    line-height: 0.98;
    text-wrap: balance;
}

#jaroons-landing .weekly-highlight-content p {
    margin: 0;
    color: #5f5348;
    font-size: 1.02rem;
    line-height: 1.72;
}

#jaroons-landing .weekly-highlight-actions {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 1rem;
}

#jaroons-landing .weekly-highlight-btn {
    align-self: auto;
    margin-top: 0;
}

#jaroons-landing .menu-teaser {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

#jaroons-landing .section-header {
    margin-bottom: 4rem;
    text-align: center;
}

#jaroons-landing .section-header span,
#jaroons-landing .section-eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#jaroons-landing .section-header h2,
#jaroons-landing .ambiente-title {
    color: var(--dark-bg);
    font-size: 3.5rem;
}

#jaroons-landing .section-header p {
    max-width: 600px;
    margin: 1rem auto 0;
    color: #666;
}

#jaroons-landing .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

#jaroons-landing .menu-item {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

#jaroons-landing .menu-item:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
}

#jaroons-landing .menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--accent-blue);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
}

#jaroons-landing .menu-img-container {
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #efefef, #d9d9d9);
}

#jaroons-landing .menu-item img,
#jaroons-landing .menu-image-placeholder {
    width: 100%;
    height: 100%;
}

#jaroons-landing .menu-image-placeholder {
    background: linear-gradient(135deg, #ececec, #cfcfcf);
}

#jaroons-landing .menu-item img {
    object-fit: cover;
    transition: transform 0.5s;
}

#jaroons-landing .menu-item:hover img {
    /* transform: scale(1.1); */
}

#jaroons-landing .menu-text {
    padding: 2rem;
}

#jaroons-landing .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 0.5rem;
}

#jaroons-landing .menu-text h3 {
    margin: 0;
    color: var(--dark-bg);
    font-size: 1.6rem;
}

#jaroons-landing .price {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-red);
}

#jaroons-landing .menu-desc {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

#jaroons-landing .menu-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.85rem;
}

#jaroons-landing .menu-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

#jaroons-landing .menu-cta-wrap {
    margin-top: 4rem;
    text-align: center;
}

#jaroons-landing .ambiente {
    padding: 6rem 0;
    background-color: var(--white);
}

#jaroons-landing .ambiente-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

#jaroons-landing .ambiente-copy {
    margin-bottom: 1.5rem;
    color: #555;
}

#jaroons-landing .ambiente-highlights {
    margin-top: 2rem;
}

#jaroons-landing .ambiente-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

#jaroons-landing .ambiente-highlights i {
    margin-top: 4px;
    color: var(--primary-red);
}

#jaroons-landing .ambiente-img {
    position: relative;
}

#jaroons-landing .ambiente-img img,
#jaroons-landing .ambiente-image-placeholder {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#jaroons-landing .ambiente-image-placeholder {
    min-height: 420px;
    background: linear-gradient(135deg, #ddd, #bbb);
}

#jaroons-landing .img-decoration {
    position: absolute;
    right: -20px;
    bottom: -20px;
    padding: 2rem;
    border-radius: 10px;
    background-color: var(--primary-red);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#jaroons-landing .ambiente-gallery-shell {
    margin-top: 3.5rem;
}

#jaroons-landing .ambiente-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

#jaroons-landing .ambiente-gallery-card {
    position: relative;
    display: flex;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid rgba(64, 40, 24, 0.08);
    border-radius: 24px;
    background: #f2e6d9;
    box-shadow: 0 20px 35px rgba(74, 48, 28, 0.1);
}

#jaroons-landing .ambiente-gallery-media {
    position: absolute;
    inset: 0;
}

#jaroons-landing .ambiente-gallery-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 11, 10, 0.03) 15%, rgba(12, 11, 10, 0.72) 100%);
}

#jaroons-landing .ambiente-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

#jaroons-landing .ambiente-gallery-card:hover img {
    /* transform: scale(1.03); */
}

#jaroons-landing .ambiente-gallery-caption {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    margin-top: auto;
    padding: 1.35rem 1.4rem 1.3rem;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--white);
}

#jaroons-landing .ambiente-gallery-caption h3 {
    color: var(--white);
    font-size: 1.55rem;
    line-height: 1.05;
}

#jaroons-landing .ambiente-gallery-caption p {
    max-width: 26ch;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.45;
}

#jaroons-landing .gallery {
    padding: 5.5rem 0;
    background:
        radial-gradient(circle at top left, rgba(211, 47, 47, 0.08), transparent 32%),
        linear-gradient(180deg, #fff 0%, #f7f0e7 100%);
}

#jaroons-landing .gallery-header {
    max-width: 760px;
    margin-bottom: 3rem;
}

#jaroons-landing .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 110px;
    gap: 1.2rem;
}

#jaroons-landing .gallery-card {
    position: relative;
    display: flex;
    min-height: 0;
    overflow: hidden;
    border: 1px solid rgba(64, 40, 24, 0.08);
    border-radius: 24px;
    background: #f2e6d9;
    box-shadow: 0 20px 35px rgba(74, 48, 28, 0.1);
}

#jaroons-landing .gallery-card:nth-child(1) {
    grid-column: span 7;
    grid-row: span 4;
}

#jaroons-landing .gallery-card:nth-child(2),
#jaroons-landing .gallery-card:nth-child(3) {
    grid-column: span 5;
    grid-row: span 2;
}

#jaroons-landing .gallery-card:nth-child(4),
#jaroons-landing .gallery-card:nth-child(5) {
    grid-column: span 6;
    grid-row: span 2;
}

#jaroons-landing .gallery-card-media {
    position: absolute;
    inset: 0;
}

#jaroons-landing .gallery-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 11, 10, 0.03) 15%, rgba(12, 11, 10, 0.72) 100%);
}

#jaroons-landing .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

#jaroons-landing .gallery-card:hover img {
    /* transform: scale(1.03); */
}

#jaroons-landing .gallery-card-caption {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    margin-top: auto;
    padding: 1.35rem 1.4rem 1.3rem;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--white);
}

#jaroons-landing .gallery-card-caption h3 {
    color: var(--white);
    font-size: 1.55rem;
    line-height: 1.05;
}

#jaroons-landing .gallery-card-caption p {
    max-width: 26ch;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.45;
}

#jaroons-landing .reviews {
    position: relative;
    padding: 5.5rem 0;
    background: #f3ece4;
}

#jaroons-landing .reviews .container {
    max-width: 1880px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(64, 40, 24, 0.08);
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(249, 243, 235, 0.96) 100%);
    box-shadow: 0 26px 52px rgba(60, 40, 24, 0.08);
}

#jaroons-landing .reviews-header {
    margin-bottom: 3rem;
}

#jaroons-landing .reviews-grid-shell {
    max-width: var(--reviews-grid-max-width, 1700px);
    margin: 0 auto;
}

#jaroons-landing .reviews-grid-shell.is-dragging {
    cursor: grabbing;
}

#jaroons-landing .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 2.5rem;
}

#jaroons-landing .review-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.4rem;
    border: 1px solid rgba(64, 40, 24, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 36px rgba(74, 48, 28, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#jaroons-landing .review-card:focus-visible {
    outline: 2px solid rgba(177, 33, 46, 0.45);
    outline-offset: 4px;
}

#jaroons-landing .review-card-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.36rem 0.62rem 0.36rem 0.4rem;
    border: 1px solid rgba(43, 39, 36, 0.12);
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.92);
    box-shadow: none;
    color: #2b2724;
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
    z-index: 4;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

#jaroons-landing .review-card-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.28rem;
    height: 1.28rem;
    border-radius: 999px;
    border: 1px solid rgba(43, 39, 36, 0.22);
    background: transparent;
    color: #1f1b18;
    flex-shrink: 0;
    transition: border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

#jaroons-landing .review-card-badge-icon svg {
    display: block;
    width: 0.66rem;
    height: 0.66rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

#jaroons-landing .review-card-image {
    overflow: hidden;
    border-radius: 16px;
    background: #efe5d8;
}

#jaroons-landing .review-card-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

#jaroons-landing .review-card-preview {
    display: none;
}

#jaroons-landing .review-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: auto;
    padding: 1rem 0.35rem 0.55rem;
}

#jaroons-landing .review-card-meta h3 {
    color: var(--dark-bg);
    font-size: 1.45rem;
}

#jaroons-landing .review-card-meta p {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: #6d6259;
    font-size: 0.62rem;
    font-weight: 700;
}

#jaroons-landing .reviews-slider-ui {
    display: none;
}

#jaroons-landing .reviews-slider-hint {
    color: #8b7664;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

#jaroons-landing .reviews-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

#jaroons-landing .reviews-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(109, 98, 89, 0.28);
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

#jaroons-landing .reviews-slider-dot.is-active {
    background: var(--primary-red);
    transform: scale(1.15);
}

#jaroons-landing .review-popover[hidden] {
    display: none !important;
}

#jaroons-landing .review-popover {
    display: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1024px) {
    #jaroons-landing .reviews,
    #jaroons-landing .reviews-grid-shell,
    #jaroons-landing .reviews-grid {
        overflow: visible;
    }

    #jaroons-landing .review-card {
        cursor: zoom-in;
    }

    #jaroons-landing .review-card-preview {
        position: absolute;
        left: 50%;
        bottom: calc(100% - 2.25rem);
        display: block;
        width: min(810px, 52.5vw);
        padding: 0.95rem;
        border: 1px solid rgba(64, 40, 24, 0.12);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 28px 60px rgba(35, 24, 16, 0.22);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(-50%, 18px) scale(0.92);
        transform-origin: center bottom;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        z-index: 30;
    }

    #jaroons-landing .review-card-preview::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -12px;
        width: 22px;
        height: 22px;
        border-right: 1px solid rgba(64, 40, 24, 0.12);
        border-bottom: 1px solid rgba(64, 40, 24, 0.12);
        background: rgba(255, 255, 255, 0.98);
        transform: translateX(-50%) rotate(45deg);
    }

    #jaroons-landing .review-card-preview img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 16px 30px rgba(35, 24, 16, 0.12);
    }

    #jaroons-landing .review-card:hover,
    #jaroons-landing .review-card:focus-within {
        /* transform: translateY(-6px); */
        /* box-shadow: 0 24px 46px rgba(74, 48, 28, 0.14); */
        z-index: 5;
    }

    #jaroons-landing .review-card:hover .review-card-badge,
    #jaroons-landing .review-card:focus-within .review-card-badge {
        border-color: rgba(43, 39, 36, 0.18);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: none;
        color: #201c19;
        transform: translateY(-1px);
    }

    #jaroons-landing .review-card:hover .review-card-badge-icon,
    #jaroons-landing .review-card:focus-within .review-card-badge-icon {
        border-color: rgba(31, 27, 24, 0.34);
        color: #151210;
        transform: scale(1.02);
    }

    #jaroons-landing .review-card:hover .review-card-image img,
    #jaroons-landing .review-card:focus-within .review-card-image img {
        /* transform: scale(1.02); */
    }

    #jaroons-landing .review-card:hover .review-card-preview,
    #jaroons-landing .review-card:focus-within .review-card-preview {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0) scale(1);
    }
}

@media (max-width: 768px) {
    #jaroons-landing .review-card-badge {
        display: none;
    }
}

#jaroons-landing .visit-info {
    padding: 0 0 5.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(243, 231, 216, 0.55) 100%),
        linear-gradient(180deg, #ffffff 0%, #f8f3ed 100%);
}

#jaroons-landing .visit-info-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.4rem) 0 0;
    background: transparent;
}

#jaroons-landing .visit-info-header {
    max-width: 760px;
    margin: 0 auto 2.75rem;
}

#jaroons-landing .visit-info-faq {
}

#jaroons-landing .visit-info-item {
}

#jaroons-landing .visit-info-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
    padding: 1.3rem 0 0.55rem;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: default;
    box-shadow: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#jaroons-landing .visit-info-summary:hover,
#jaroons-landing .visit-info-summary:active,
#jaroons-landing .visit-info-summary:focus {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

#jaroons-landing .visit-info-summary:focus-visible {
    outline: 1px solid rgba(0, 103, 151, 0.35);
    outline-offset: 4px;
}

#jaroons-landing .visit-info-summary:disabled {
    opacity: 1;
}

#jaroons-landing .visit-info-summary-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

#jaroons-landing .visit-info-item-label {
    color: var(--primary-red);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#jaroons-landing .visit-info-item-title {
    color: var(--dark-bg);
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.05;
}

#jaroons-landing .visit-info-toggle {
    display: none;
}

#jaroons-landing .visit-info-toggle::before {
    content: "";
    position: absolute;
    top: 44%;
    left: 50%;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid rgba(93, 67, 48, 0.86);
    border-bottom: 2px solid rgba(93, 67, 48, 0.86);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.24s ease;
}

#jaroons-landing .visit-info-item.is-open .visit-info-toggle::before {
    transform: translate(-50%, -34%) rotate(-135deg);
}

#jaroons-landing .visit-info-answer {
    display: block;
    max-width: 760px;
    color: #5f5348;
}

#jaroons-landing .visit-info-answer-inner {
    padding: 0 0 1.35rem;
}

#jaroons-landing .visit-info-answer p {
    margin: 0;
}

#jaroons-landing .visit-info-link {
    display: inline;
    margin-left: 0.45rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    cursor: pointer;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
    box-shadow: none;
    transform: scale(1);
    transform-origin: left center;
    transition: color 0.2s ease, transform 0.2s ease;
}

#jaroons-landing .visit-info-link:hover,
#jaroons-landing .visit-info-link:focus-visible {
    color: var(--primary-red);
    transform: scale(1.04);
}

#jaroons-landing .reservation {
    position: relative;
    padding: 6rem 0;
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), var(--jaroons-reservation-image, none);
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

#jaroons-landing .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#jaroons-landing .reservation .container {
    position: relative;
    z-index: 2;
}

#jaroons-landing .reservation h2 {
    margin-bottom: 1rem;
    color: var(--primary-red);
    font-size: 4rem;
}

#jaroons-landing .reservation p {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #ddd;
    font-size: 1.3rem;
}

#jaroons-landing .contact-box {
    display: inline-block;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

#jaroons-landing .contact-box-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

#jaroons-landing .phone-number {
    display: block;
    margin: 1rem 0;
    color: var(--white) !important;
    font-size: 2rem;
    font-weight: 700;
}

#jaroons-landing .reservation-btn {
    margin-top: 10px;
}

#jaroons-landing .reservation-page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background-color: var(--dark-bg);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.72)), var(--jaroons-reservation-image, none);
    background-size: cover;
    background-position: center;
    color: var(--white);
}

#jaroons-landing .reservation-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
}

#jaroons-landing .reservation-page-hero h1 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 4rem;
    line-height: 1.1;
}

#jaroons-landing .reservation-page-hero p {
    margin: 0 auto;
    max-width: 640px;
    color: #f1f1f1;
    font-size: 1.15rem;
}

#jaroons-landing .reservation-page-hero-contact {
    display: inline-flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

#jaroons-landing .reservation-page-hero-contact span {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#jaroons-landing .reservation-page-hero-contact a,
#jaroons-landing .reservation-page-hero-contact strong {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 700;
}

#jaroons-landing .reservation-page-main {
    padding: 4.5rem 0 5rem;
    background: linear-gradient(180deg, #f6f0e9 0%, #ffffff 100%);
}

#jaroons-landing .reservation-page-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

#jaroons-landing .reservation-page-content .jr-reservation-wrapper {
    width: 100%;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 4vw, 3.25rem);
}

#jaroons-landing .reservation-page-content .jr-reservation-notice {
    display: inline-block;
    max-width: 100%;
    margin-left: -3px;
    padding: 9px 22px 9px 21px;
    border-left: 0;
    background: #fff6bf;
}

#jaroons-landing .reservation-page-content .jr-submit-button {
    padding: 18px 34px;
}

#jaroons-landing .reservation-page-content .jr-field input,
#jaroons-landing .reservation-page-content .jr-field textarea {
    padding-left: 18px;
}

#jaroons-landing .reservation-page-content > * + * {
    margin-top: 1.5rem;
}

#jaroons-landing footer {
    padding: 4rem 0 1rem;
    background-color: #111;
    color: #aaa;
}

#jaroons-landing .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

#jaroons-landing .footer-col h3 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
}

#jaroons-landing .footer-brand-title {
    color: var(--primary-red) !important;
}

#jaroons-landing .footer-brand-text {
    margin-bottom: 1rem;
}

#jaroons-landing .footer-col ul li {
    display: flex;
    gap: 10px;
    margin-bottom: 0.8rem;
}

#jaroons-landing .footer-col i {
    margin-top: 5px;
    color: var(--primary-red);
}

#jaroons-landing .footer-col a:hover,
#jaroons-landing .footer-bottom a:hover {
    color: var(--white);
}

#jaroons-landing .social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

#jaroons-landing .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    transition: background 0.3s;
}

#jaroons-landing .social-btn:hover {
    background: var(--primary-red);
    color: var(--white);
}

#jaroons-landing .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 2rem;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.9rem;
}

#jaroons-landing .footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

#jaroons-landing .payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.5rem;
}

@media (max-width: 900px) {
    #jaroons-landing .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #jaroons-landing .feature-card-media {
        min-height: 220px;
    }

    #jaroons-landing .trust-usp-grid {
        grid-template-columns: 1fr;
    }

    #jaroons-landing .weekly-highlight-panel {
        grid-template-columns: 1fr;
    }

    #jaroons-landing .weekly-highlight-media {
        min-height: 360px;
    }

    #jaroons-landing .weekly-highlight-media-arrow {
        width: 2.65rem;
        height: 2.65rem;
    }

    #jaroons-landing .weekly-highlight-content {
        padding: 0.35rem 0 0;
    }

    #jaroons-landing .weekly-highlight-actions {
        align-items: flex-start;
    }

    #jaroons-landing .ambiente-container {
        grid-template-columns: 1fr;
    }

    #jaroons-landing .ambiente-img {
        order: -1;
        margin-bottom: 3rem;
    }

    #jaroons-landing .ambiente-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #jaroons-landing .hero-content h1 {
        font-size: 3.5rem;
    }

    #jaroons-landing .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

    #jaroons-landing .gallery-card:nth-child(1),
    #jaroons-landing .gallery-card:nth-child(2),
    #jaroons-landing .gallery-card:nth-child(3),
    #jaroons-landing .gallery-card:nth-child(4),
    #jaroons-landing .gallery-card:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }

    #jaroons-landing .gallery-card:nth-child(1) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    #jaroons-landing .mobile-toggle {
        display: inline-flex;
    }

    #jaroons-landing .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        padding-top: 3rem;
        flex-direction: column;
        justify-content: center;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 999;
    }

    #jaroons-landing .nav-links.active {
        left: 0;
    }

    #jaroons-landing .nav-links > a,
    #jaroons-landing .nav-links > .nav-link-trigger,
    #jaroons-landing .nav-menu-toggle {
        display: block;
        width: 100%;
        margin-bottom: 2rem;
        color: var(--text-color);
        text-align: center;
        text-shadow: none;
        font-size: 1.5rem;
    }

    #jaroons-landing .nav-item {
        width: 100%;
        flex-direction: column;
    }

    #jaroons-landing .nav-submenu {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        min-width: 0;
        margin-top: -0.75rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    #jaroons-landing .nav-item-has-submenu.submenu-open .nav-submenu {
        max-height: 220px;
    }

    #jaroons-landing .nav-submenu-link {
        color: var(--text-color);
        text-align: center;
    }

    #jaroons-landing .menu-overlay {
        padding: 6.5rem 1rem 1rem;
    }

    #jaroons-landing .menu-overlay-dialog {
        max-height: calc(100vh - 7.5rem);
        padding: 1rem;
    }

    #jaroons-landing .menu-overlay-header h2 {
        font-size: 2.3rem;
    }

    #jaroons-landing .menu-overlay-stage {
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        gap: 0.5rem;
    }

    #jaroons-landing .menu-overlay-arrow {
        width: 42px;
        height: 42px;
    }

    #jaroons-landing .menu-overlay-viewport {
        min-height: 54vh;
        padding: 0.85rem;
    }

    #jaroons-landing .menu-overlay-page img {
        max-height: 50vh;
    }

    #jaroons-landing .arrival-overlay-grid {
        gap: 1.35rem;
        margin-top: 1.35rem;
    }

    #jaroons-landing .arrival-overlay-primary {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    #jaroons-landing .arrival-overlay-section-secondary {
        padding-top: 0;
    }

    #jaroons-landing .arrival-overlay-address {
        width: auto;
        margin-left: 0;
    }

    #jaroons-landing .arrival-overlay-intro {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    #jaroons-landing .arrival-overlay-actions {
        flex-direction: column;
        justify-self: stretch;
    }

    #jaroons-landing .arrival-overlay-actions .btn {
        width: 100%;
        text-align: center;
    }

    #jaroons-landing .arrival-overlay-section-travel {
        grid-template-columns: 1fr;
        row-gap: 0.85rem;
    }

    #jaroons-landing .nav-btn {
        width: 80%;
        margin: 0 auto;
    }

    #jaroons-landing .hero-content h1 {
        font-size: 3rem;
    }

    #jaroons-landing .hero-subtitle {
        font-size: 1.4rem;
    }

    #jaroons-landing .section-header h2,
    #jaroons-landing .ambiente-title {
        font-size: 2.5rem;
    }

    #jaroons-landing .reservation {
        padding: 5.1rem 0;
    }

    #jaroons-landing .reservation h2 {
        font-size: 2.55rem;
    }

    #jaroons-landing .reservation p {
        margin-bottom: 2.55rem;
        font-size: 1.1rem;
    }

    #jaroons-landing .contact-box {
        padding: 1.7rem;
        border-radius: 13px;
    }

    #jaroons-landing .contact-box-label {
        font-size: 0.8rem;
    }

    #jaroons-landing .phone-number {
        font-size: 1.7rem;
    }

    #jaroons-landing .reservation-btn {
        margin-top: 8px;
        padding: 15px 28px;
        font-size: 0.95rem;
    }

    #jaroons-landing .reservation-page-hero {
        padding-top: 8.5rem;
    }

    #jaroons-landing .reservation-page-hero h1 {
        font-size: 3rem;
    }

    #jaroons-landing .reviews-grid-shell {
        overflow-x: auto;
        max-width: 100%;
        padding: 0 10vw 0.35rem 0;
        cursor: grab;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }

    #jaroons-landing .reviews-grid-shell::-webkit-scrollbar {
        display: none;
    }

    #jaroons-landing .reviews-grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(95%, 95%);
        gap: 1rem;
    }

    #jaroons-landing .review-card {
        scroll-snap-align: start;
    }

    #jaroons-landing .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    #jaroons-landing .footer-col ul li {
        justify-content: center;
    }

    #jaroons-landing .social-links {
        justify-content: center;
    }

    #jaroons-landing .reviews-slider-ui {
        display: block;
        margin-top: 1rem;
    }

    #jaroons-landing .review-popover {
        position: fixed;
        inset: 0;
        z-index: 2400;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.25rem;
    }

    #jaroons-landing .review-popover-backdrop {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(20, 16, 12, 0.45);
        backdrop-filter: blur(6px);
        cursor: pointer;
    }

    #jaroons-landing .review-popover-dialog {
        position: relative;
        z-index: 1;
        width: min(92vw, 520px);
        padding: 0.9rem;
        border: 1px solid rgba(85, 53, 32, 0.12);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 28px 70px rgba(35, 24, 16, 0.24);
    }

    #jaroons-landing .review-popover-close {
        position: absolute;
        top: 12px;
        right: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 50%;
        background: rgba(20, 16, 12, 0.08);
        color: #2d2118;
        font-size: 1.75rem;
        line-height: 1;
        cursor: pointer;
        transition: background-color 0.2s ease, transform 0.2s ease;
    }

    #jaroons-landing .review-popover-close:hover,
    #jaroons-landing .review-popover-close:focus-visible {
        background: rgba(211, 47, 47, 0.14);
        transform: scale(1.04);
    }

    #jaroons-landing .review-popover-media {
        overflow: hidden;
        border-radius: 18px;
        background: #efe5d8;
    }

    #jaroons-landing .review-popover-media img {
        width: 100%;
        max-height: min(72vh, 760px);
        object-fit: contain;
    }

    #jaroons-landing .reviews .container {
        padding: 1.25rem;
        border-radius: 24px;
    }

    #jaroons-landing .mobile-card-slider-nav {
        position: absolute;
        inset: 0;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 0.45rem;
        pointer-events: none;
    }

    #jaroons-landing .mobile-card-slider-arrow {
        width: 2.5rem;
        height: 2.5rem;
        pointer-events: auto;
    }

    #jaroons-landing .mobile-card-slider-track {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
    }

    #jaroons-landing .mobile-card-slider-track::-webkit-scrollbar {
        display: none;
    }

    #jaroons-landing .mobile-card-slider-track > [data-mobile-card-slide] {
        flex: 0 0 100%;
        min-width: 100%;
        scroll-snap-align: start;
    }

    #jaroons-landing .visit-info-summary {
        padding: 1.1rem 0;
        gap: 0.85rem;
        cursor: pointer;
    }

    #jaroons-landing .visit-info-item-title {
        font-size: 1.3rem;
        line-height: 1.12;
    }

    #jaroons-landing .visit-info-answer {
        display: grid;
        grid-template-rows: 1fr;
        opacity: 1;
        visibility: visible;
        transition:
            grid-template-rows 0.26s ease,
            opacity 0.2s ease,
            visibility 0.2s ease;
    }

    #jaroons-landing .visit-info-answer-inner {
        overflow: hidden;
        padding: 0 0 1.15rem;
    }

    #jaroons-landing .visit-info-item:not(.is-open) .visit-info-answer {
        grid-template-rows: 0fr;
        opacity: 0;
        visibility: hidden;
    }

    #jaroons-landing .visit-info-item:not(.is-open) .visit-info-answer-inner {
        padding-bottom: 0;
    }

    #jaroons-landing .visit-info-toggle {
        position: relative;
        display: block;
        flex: 0 0 auto;
        width: 2.2rem;
        height: 2.2rem;
        border: 1px solid rgba(93, 67, 48, 0.18);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.72);
    }

    #jaroons-landing .visit-info-link {
        margin-top: 0.75rem;
    }

    #jaroons-landing .menu-grid {
        grid-template-columns: none;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    #jaroons-landing header {
        padding: 0.5rem 0;
    }

    #jaroons-landing .logo img {
        height: 50px;
    }

    #jaroons-landing .logo-text {
        font-size: 1.6rem;
    }

    #jaroons-landing .menu-overlay {
        padding-top: 5.8rem;
    }

    #jaroons-landing .menu-overlay-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
    }

    #jaroons-landing .menu-overlay-header {
        padding-right: 3rem;
    }

    #jaroons-landing .menu-overlay-header h2 {
        font-size: 2rem;
    }

    #jaroons-landing .arrival-overlay-section h3 {
        font-size: 1.22rem;
    }

    #jaroons-landing .arrival-overlay .menu-overlay-header h2 {
        font-size: 1.35rem;
    }

    #jaroons-landing .arrival-overlay .menu-overlay-header {
        padding-left: 0.25rem;
    }

    #jaroons-landing .menu-overlay-tabs {
        gap: 8px;
    }

    #jaroons-landing .menu-overlay-tab {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    #jaroons-landing .hero {
        min-height: 380px;
        height: 60vh;
        background-attachment: scroll;
    }

    #jaroons-landing .hero-content {
        padding: 0 1.5rem;
    }

    #jaroons-landing .hero-content h1 {
        margin-bottom: 0.8rem;
        font-size: 2.5rem;
    }

    #jaroons-landing .hero-subtitle {
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    #jaroons-landing .hero-content p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    #jaroons-landing .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    #jaroons-landing .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
    }

    #jaroons-landing .features,
    #jaroons-landing .weekly-highlight,
    #jaroons-landing .menu-teaser,
    #jaroons-landing .ambiente,
    #jaroons-landing .gallery,
    #jaroons-landing .reviews,
    #jaroons-landing .visit-info,
    #jaroons-landing .reservation {
        padding: 2.55rem 0;
    }

    #jaroons-landing .trust-usp {
        padding: 0 0 3rem;
    }

    #jaroons-landing .section-header {
        margin-bottom: 2rem;
    }

    #jaroons-landing .section-header h2,
    #jaroons-landing .ambiente-title {
        font-size: 2.2rem;
    }

    #jaroons-landing .features-header,
    #jaroons-landing .weekly-highlight-header,
    #jaroons-landing .features-note {
        text-align: center;
    }

    #jaroons-landing .features-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    #jaroons-landing .feature-card {
        border-radius: 22px;
    }

    #jaroons-landing .feature-card-media {
        min-height: 235px;
    }

    #jaroons-landing .feature-card-body {
        gap: 1.05rem;
        padding: 1.4rem 1.15rem 1.45rem;
    }

    #jaroons-landing .feature-card h3 {
        font-size: 1.55rem;
    }

    #jaroons-landing .trust-usp-shell {
        padding: 1.5rem;
        border-radius: 24px;
    }

    #jaroons-landing .weekly-highlight-shell {
        padding: 0;
        border-radius: 0;
    }

    #jaroons-landing .visit-info-shell {
        padding-top: 1.5rem;
    }

    #jaroons-landing .trust-usp-header {
        margin-bottom: 2rem;
    }

    #jaroons-landing .weekly-highlight-header {
        margin-bottom: 1.75rem;
    }

    #jaroons-landing .visit-info-header {
        margin-bottom: 2rem;
    }

    #jaroons-landing .trust-usp-item {
        padding: 1.2rem;
    }

    #jaroons-landing .trust-usp-item-head {
        align-items: flex-start;
    }

    #jaroons-landing .trust-usp-item h3 {
        font-size: 1.4rem;
    }

    #jaroons-landing .weekly-highlight-content h3 {
        font-size: 2.2rem;
    }

    #jaroons-landing .menu-img-container {
        height: 200px;
    }

    #jaroons-landing .menu-text {
        padding: 1.5rem;
    }

    #jaroons-landing .menu-text h3 {
        font-size: 1.4rem;
    }

    #jaroons-landing .img-decoration {
        right: 10px;
        bottom: -15px;
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
    }

    #jaroons-landing .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    #jaroons-landing .gallery-card:nth-child(1),
    #jaroons-landing .gallery-card:nth-child(2),
    #jaroons-landing .gallery-card:nth-child(3),
    #jaroons-landing .gallery-card:nth-child(4),
    #jaroons-landing .gallery-card:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }

    #jaroons-landing .gallery-card {
        min-height: 260px;
        border-radius: 20px;
    }

    #jaroons-landing .ambiente-gallery {
        grid-template-columns: 1fr;
    }

    #jaroons-landing .ambiente-gallery-card {
        min-height: 260px;
        border-radius: 20px;
    }

    #jaroons-landing .ambiente-gallery-caption {
        padding: 1.1rem 1.1rem 1rem;
    }

    #jaroons-landing .ambiente-gallery-caption h3 {
        font-size: 1.3rem;
    }

    #jaroons-landing .ambiente-gallery-caption p {
        max-width: none;
        font-size: 0.9rem;
    }

    #jaroons-landing .gallery-card-caption {
        padding: 1.1rem 1.1rem 1rem;
    }

    #jaroons-landing .gallery-card-caption h3 {
        font-size: 1.3rem;
    }

    #jaroons-landing .gallery-card-caption p {
        max-width: none;
        font-size: 0.9rem;
    }

    #jaroons-landing .reviews-grid {
        grid-auto-columns: minmax(95%, 95%);
    }

    #jaroons-landing .reviews-grid-shell {
        padding-right: 12vw;
    }

    #jaroons-landing .reviews .container {
        padding: 1rem;
        border-radius: 20px;
    }

    #jaroons-landing .review-card {
        padding: 0.85rem;
        border-radius: 18px;
    }

    #jaroons-landing .review-card-meta {
        padding: 0.85rem 0.15rem 0;
    }

    #jaroons-landing .reservation h2 {
        font-size: 2.12rem;
    }

    #jaroons-landing .reservation p {
        margin-bottom: 2.15rem;
        font-size: 0.94rem;
    }

    #jaroons-landing .contact-box {
        padding: 1.45rem;
        border-radius: 12px;
    }

    #jaroons-landing .contact-box-label {
        font-size: 0.74rem;
    }

    #jaroons-landing .phone-number {
        margin: 0.85rem 0;
        font-size: 1.28rem;
    }

    #jaroons-landing .reservation-btn {
        margin-top: 8px;
        padding: 13px 24px;
        font-size: 0.9rem;
    }

    #jaroons-landing .reservation-page-hero {
        padding: 7.5rem 0 3.5rem;
    }

    #jaroons-landing .reservation-page-hero h1 {
        font-size: 2.5rem;
    }

    #jaroons-landing .reservation-page-hero-contact {
        width: 100%;
        padding: 1rem 1.2rem;
    }

    #jaroons-landing .reservation-page-main {
        padding: 3rem 0 3.5rem;
    }

    #jaroons-landing .reservation-page-content .jr-reservation-wrapper {
        padding: 2rem 1.25rem;
    }

    #jaroons-landing .weekly-highlight-shell {
        padding: 0;
    }

    #jaroons-landing .weekly-highlight-switches {
        justify-content: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.4rem;
        padding-bottom: 0.7rem;
    }

    #jaroons-landing .weekly-highlight-switch {
        width: 100%;
        text-align: center;
        padding-bottom: 0.65rem;
    }

    #jaroons-landing .weekly-highlight-media {
        min-height: 250px;
        border-radius: 20px;
    }

    #jaroons-landing .weekly-highlight-media-arrow {
        width: 2.45rem;
        height: 2.45rem;
    }

    #jaroons-landing .weekly-highlight-content {
        gap: 1.4rem;
        padding: 0.15rem 0 0;
    }

    #jaroons-landing .weekly-highlight-content h3 {
        font-size: 1.95rem;
    }

    #jaroons-landing .weekly-highlight-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    #jaroons-landing .weekly-highlight-btn {
        width: 100%;
    }

    #jaroons-landing .footer-bottom-links {
        gap: 8px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
