:root {
    --espresso: #3C2415;
    --espresso-light: #5A3A28;
    --cream: #FDF6EC;
    --cream-dark: #F5EBD8;
    --beige: #E8DDD0;
    --terracotta: #C4785B;
    --terracotta-muted: #B8896F;
    --green: #7B9E6B;
    --green-soft: #A3BE96;
    --white: #FFFFFF;
    --off-white: #FAFAF7;
    --text-dark: #2A1F14;
    --text-body: #5A4D3F;
    --text-light: #8A7E72;
    --border: #E5DDD3;
    --shadow-sm: 0 2px 8px rgba(60, 36, 21, 0.06);
    --shadow-md: 0 8px 24px rgba(60, 36, 21, 0.08);
    --shadow-lg: 0 16px 48px rgba(60, 36, 21, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--off-white);
}

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

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--espresso);
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

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

.mt-lg {
    margin-top: 48px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-light);
}

/* ═══════════ BUTTONS ═══════════ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--espresso);
    color: var(--white);
    border-color: var(--espresso);
}

.btn-primary:hover {
    background: var(--espresso-light);
    border-color: var(--espresso-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--espresso);
    border-color: var(--espresso);
}

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

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--espresso);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--terracotta);
    transition: all var(--transition);
}

.link-arrow:hover {
    gap: 10px;
    color: var(--espresso);
}

/* ═══════════ HEADER ═══════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(253, 246, 236, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    transition: color var(--transition);
}

.scrolled .logo {
    color: var(--espresso);
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
}

.logo-text strong {
    font-weight: 700;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-list a {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.scrolled .nav-list a {
    color: var(--text-body);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.scrolled .nav-list a:hover,
.scrolled .nav-list a.active {
    color: var(--espresso);
    background: var(--beige);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.scrolled .mobile-toggle span {
    background: var(--espresso);
}

/* ═══════════ HERO ═══════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(42, 31, 20, 0.75) 0%,
        rgba(42, 31, 20, 0.5) 50%,
        rgba(42, 31, 20, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 64px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 em {
    font-style: italic;
    color: var(--terracotta-muted);
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ═══════════ PAGE HERO ═══════════ */

.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-sm {
    min-height: 400px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 60px;
}

.page-hero-content h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* ═══════════ FEATURES ═══════════ */

.featured-section {
    background: var(--white);
}

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

.feature-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--off-white);
    transition: all var(--transition);
}

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

.feature-img {
    height: 260px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.08);
}

.feature-body {
    padding: 28px;
}

.feature-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-body p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ═══════════ ATMOSPHERE ═══════════ */

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

.atmosphere-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.atmosphere-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.atmosphere-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.atmosphere-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.atmosphere-list i {
    color: var(--green);
    font-size: 16px;
}

.atmosphere-images {
    position: relative;
}

.atm-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.atm-img-main img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.atm-img-accent {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid var(--off-white);
    box-shadow: var(--shadow-md);
}

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

/* ═══════════ DRINKS ═══════════ */

.drinks-section {
    background: var(--white);
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.drink-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--off-white);
    transition: all var(--transition);
}

.drink-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.drink-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.drink-card:hover img {
    transform: scale(1.05);
}

.drink-info {
    padding: 20px;
}

.drink-info h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.drink-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.drink-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--terracotta);
}

/* ═══════════ CTA SECTION ═══════════ */

.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 31, 20, 0.7);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 32px;
}

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

/* ═══════════ VISIT SECTION ═══════════ */

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.visit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-item i {
    font-size: 20px;
    color: var(--terracotta);
    margin-top: 4px;
    width: 24px;
    text-align: center;
}

.visit-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.visit-item p {
    font-size: 15px;
    color: var(--text-light);
}

.visit-item a {
    color: var(--terracotta);
}

/* ═══════════ MENU PAGE ═══════════ */

.menu-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 56px;
    padding: 8px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.menu-tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--espresso);
    color: var(--white);
}

.menu-category {
    margin-bottom: 64px;
    scroll-margin-top: 100px;
}

.menu-category-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.menu-category-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
}

.menu-category-header p {
    color: var(--text-light);
}

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

.menu-item {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.menu-item:hover {
    border-color: var(--terracotta-muted);
    box-shadow: var(--shadow-sm);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.menu-item-header h4 {
    font-size: 18px;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--terracotta);
    white-space: nowrap;
}

.menu-item p {
    font-size: 14px;
    color: var(--text-light);
}

.menu-note {
    margin-top: 40px;
    padding: 20px 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    text-align: center;
}

.menu-note p {
    font-size: 14px;
    color: var(--text-light);
}

.menu-note i {
    color: var(--terracotta);
    margin-right: 6px;
}

/* ═══════════ ABOUT ═══════════ */

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

.about-grid-reverse {
    direction: rtl;
}

.about-grid-reverse > * {
    direction: ltr;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* ═══════════ VALUES ═══════════ */

.values-section {
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--cream);
    border-radius: 50%;
    font-size: 24px;
    color: var(--green);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ═══════════ GALLERY ═══════════ */

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item-wide img {
    height: 350px;
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(42,31,20,0.8), transparent);
    color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    transition: all var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-caption h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* ═══════════ CATERING ═══════════ */

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

.package-card {
    position: relative;
    padding: 36px 28px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.package-card:hover {
    border-color: var(--terracotta-muted);
    box-shadow: var(--shadow-md);
}

.package-featured {
    border-color: var(--espresso);
    box-shadow: var(--shadow-md);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--espresso);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.package-header {
    margin-bottom: 12px;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.package-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--terracotta);
}

.package-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.package-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.package-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
}

.package-card li:last-child {
    border-bottom: none;
}

.package-card li i {
    color: var(--green);
    font-size: 12px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.detail-card {
    text-align: center;
    padding: 32px 20px;
}

.detail-card i {
    font-size: 32px;
    color: var(--terracotta);
    margin-bottom: 16px;
}

.detail-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.detail-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ═══════════ CONTACT ═══════════ */

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

.contact-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-card > p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--terracotta);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-light);
}

.contact-item a {
    color: var(--terracotta);
}

.hours-table {
    display: flex;
    flex-direction: column;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

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

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* ═══════════ FORMS ═══════════ */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: var(--terracotta);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(196, 120, 91, 0.1);
}

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

/* ═══════════ FAQ ═══════════ */

.faq-group {
    margin-bottom: 40px;
}

.faq-group-title {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition);
}

.accordion-item.active {
    border-color: var(--terracotta-muted);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: all var(--transition);
}

.accordion-header:hover {
    color: var(--terracotta);
}

.accordion-icon {
    font-size: 14px;
    color: var(--terracotta);
    transition: transform var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

.accordion-body a {
    color: var(--terracotta);
    text-decoration: underline;
}

.faq-cta {
    text-align: center;
    padding: 48px 0;
}

.faq-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ═══════════ LEGAL ═══════════ */

.legal-content {
    padding: 20px 0;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 32px;
    font-style: italic;
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ═══════════ 404 ═══════════ */

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream);
    padding: 40px 24px;
}

.error-content {
    max-width: 500px;
}

.error-icon {
    font-size: 64px;
    color: var(--terracotta-muted);
    margin-bottom: 16px;
    opacity: 0.5;
}

.error-content h1 {
    font-size: 120px;
    color: var(--espresso);
    line-height: 1;
    margin-bottom: 8px;
}

.error-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.error-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════ FLASH MESSAGES ═══════════ */

.flash-messages {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}

.flash-msg {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    animation: slideIn 0.3s ease;
}

.flash-success {
    background: var(--green);
    color: var(--white);
}

.flash-error {
    background: #D35B5B;
    color: var(--white);
}

.flash-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.flash-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ═══════════ FOOTER ═══════════ */

.site-footer {
    background: var(--espresso);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0 24px;
    color: rgba(255,255,255,0.6);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo .logo-icon {
    color: var(--terracotta-muted);
}

.footer-logo .logo-text {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--terracotta);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--white);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    padding: 6px 0;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.6;
}

.contact-list i {
    margin-top: 3px;
    color: var(--terracotta-muted);
    width: 14px;
}

.contact-list a {
    color: rgba(255,255,255,0.6);
}

.contact-list a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

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

/* ═══════════ ANIMATIONS ═══════════ */

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid .feature-card:last-child {
        grid-column: span 2;
    }

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

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

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

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

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

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

    .gallery-item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--cream);
        padding: 80px 32px 32px;
        transition: right var(--transition);
        box-shadow: -8px 0 24px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-list a {
        color: var(--text-body);
        padding: 12px 16px;
        font-size: 16px;
    }

    .nav-list a:hover,
    .nav-list a.active {
        color: var(--espresso);
        background: var(--beige);
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-scroll {
        display: none;
    }

    .page-hero-sm {
        min-height: 300px;
    }

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

    .atmosphere-grid,
    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid-reverse {
        direction: ltr;
    }

    .atmosphere-list {
        grid-template-columns: 1fr;
    }

    .atm-img-accent {
        display: none;
    }

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

    .features-grid .feature-card:last-child {
        grid-column: span 1;
    }

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

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

    .menu-nav {
        gap: 4px;
    }

    .menu-tab {
        padding: 8px 14px;
        font-size: 13px;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .about-content h2,
    .atmosphere-content h2 {
        font-size: 32px;
    }

    .flash-messages {
        top: auto;
        bottom: 24px;
        right: 16px;
        left: 16px;
        max-width: none;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .error-content h1 {
        font-size: 80px;
    }
}
