/* =============================================
   GLOBAL STYLES & VARIABLES
   ============================================= */

:root {
    --primary-burgundy: #264653;
    --dark-burgundy: #1A2F3D;
    --cream: #F6F5F1;
    --beige: #E9E6DA;
    --dark-brown: #2E2B28;
    --anthracite: #333333;
    --gold: #E9C46A;
    --accent-gold: #F4A261;
    --light-text: #EFEFEF;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-brown);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: clip;
}

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

/* =============================================
   HEADER / NAVIGATION
   ============================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 200;
    width: 100%;
    background: white;
}

.header-top {
    background: #1A4A5C;
    padding: 0.42rem 0;
    font-size: 0.77rem;
    color: rgba(255,255,255,0.85);
    font-family: 'Poppins', sans-serif;
}

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

.header-top span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.header-top i { opacity: 0.7; font-size: 0.75rem; }

.header-top-right {
    display: flex;
    gap: 1.5rem;
}

.header-main {
    background: white;
    border-bottom: 3px solid var(--accent-gold);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
    min-height: 70px;
}

.header-inner { display: flex; align-items: center; gap: 1.5rem; }

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
}

.logo i { font-size: 1.7rem; color: var(--accent-gold); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7A9E8A;
    font-family: 'Poppins', sans-serif;
}

.logo-suffix { font-size: 1.2rem; font-weight: 800; color: #1A4A5C; }

.nav-menu { display: flex; gap: 1.5rem; align-items: center; }

.nav-menu a {
    color: #3A3A3A;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.35rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.25s;
}

.nav-menu a:hover { color: #1A4A5C; }
.nav-menu a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 200;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #1A4A5C;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 5px 0;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.cta-button {
    padding: 0.6rem 1.3rem;
    background: #1A4A5C;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.88rem;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover { background: var(--accent-gold); color: #1A2F3D; }

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

.hero {
    background: #FDF6ED;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 4rem 0 3rem;
}

.hero-split {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 3rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-gold);
    margin-bottom: 1.25rem;
    font-family: 'Poppins', sans-serif;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    line-height: 1.1;
    color: #1A2F3D;
    margin-bottom: 1.25rem;
    font-weight: 900;
}

.hero-text p {
    font-size: 1.08rem;
    color: #5A5248;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2rem;
    font-family: 'Lora', serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A4A5C;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.hero-stat span {
    font-size: 0.73rem;
    color: #9A8F84;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-family: 'Poppins', sans-serif;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 400px;
}

.book-shelf {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 2rem 2rem 0;
    border-bottom: 14px solid #C5A97D;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    background: rgba(197,169,125,0.06);
}

.book-spine {
    width: 46px;
    background: var(--c, #1A4A5C);
    height: var(--h, 200px);
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: rgba(255,255,255,0.82);
    font-family: 'Lora', serif;
    font-size: 0.7rem;
    font-style: italic;
    letter-spacing: 0.06em;
    box-shadow: inset -4px 0 10px rgba(0,0,0,0.18), 3px 4px 10px rgba(0,0,0,0.18);
    transition: transform 0.25s;
    cursor: default;
    flex-shrink: 0;
}

.book-spine:hover { transform: rotate(180deg) translateY(12px); }

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

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

.btn {
    padding: 0.85rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: #1A4A5C;
    color: white;
}

.btn-primary:hover {
    background-color: #265E72;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,74,92,0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #1A4A5C;
    border: 2px solid #1A4A5C;
}

.btn-secondary:hover {
    background-color: #1A4A5C;
    color: white;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */

.benefits {
    background-color: var(--cream);
    padding: 5rem 0;
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.strength-item {
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.3s ease;
    border-left: 5px solid var(--primary-burgundy);
}

.strength-item:hover {
    box-shadow: 0 8px 24px rgba(38, 70, 83, 0.18);
}

.strength-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--primary-burgundy), var(--dark-burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-right: 2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(38, 70, 83, 0.35);
}

.strength-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.strength-content p {
    color: var(--dark-brown);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about {
    background-color: var(--white);
    padding: 5rem 0;
}

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

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
}

.about-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.about-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.about-list li {
    padding: 0.75rem 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-list li strong {
    color: var(--primary-burgundy);
}

.about-content .btn {
    margin-top: 1rem;
}

/* =============================================
   ASSORTMENT SECTION
   ============================================= */

.assortment {
    background-color: var(--beige);
    padding: 5rem 0;
    text-align: center;
}

.assortment h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
    font-family: 'Lora', serif;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(107, 44, 63, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background-color: var(--accent-gold);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--dark-burgundy);
    padding: 1.5rem 1.5rem 0.5rem;
}

.product-card p {
    color: var(--dark-brown);
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Lora', serif;
}

/* =============================================
   OFFERS SECTION
   ============================================= */

.offers {
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--dark-burgundy) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--light-text);
}

.offers h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.offers .section-subtitle {
    color: var(--light-text);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.offer-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.offer-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.offer-card p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.offer-price {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    margin-top: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* =============================================
   CATERING SECTION
   ============================================= */

.catering {
    background-color: var(--white);
    padding: 5rem 0;
}

.catering-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.catering-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.catering-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1rem;
}

.catering-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
}

.catering-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-burgundy);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.catering-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.catering-list li {
    padding: 0.75rem 0;
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent-gold);
    padding-left: 1rem;
}

.catering-list li strong {
    color: var(--primary-burgundy);
}

/* =============================================
   QUALITY PROMISE SECTION
   ============================================= */

/* =============================================
   MEDIA CATEGORY BROWSER
   ============================================= */

.media-categories {
    padding: 5rem 0;
    background: #f0f4f8;
}

.media-categories h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--dark-burgundy);
    margin-bottom: 0.5rem;
}

.media-categories .section-subtitle {
    text-align: center;
    color: var(--warm-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.category-tiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.category-tile {
    background: white;
    border-radius: 14px;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    cursor: default;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.category-tile:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.category-tile i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.category-tile h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: var(--dark-burgundy);
    font-family: 'Poppins', sans-serif;
}

.category-tile span {
    font-size: 0.78rem;
    color: var(--warm-gray);
}

/* =============================================
   UPCOMING EVENTS
   ============================================= */

.events-upcoming {
    padding: 5rem 0;
    background: var(--primary-burgundy);
    color: white;
}

.events-upcoming h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2.5rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 780px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.09);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    background: var(--accent);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    color: white;
    flex-shrink: 0;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.event-date .month {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.event-info p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.68);
    margin: 0;
}

.event-tag {
    font-size: 0.72rem;
    background: rgba(255,255,255,0.14);
    color: white;
    border-radius: 20px;
    padding: 0.25rem 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact {
    background-color: var(--white);
    padding: 5rem 0;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.info-item p {
    color: var(--dark-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-item strong {
    color: var(--primary-burgundy);
}

.contact-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--dark-burgundy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.opening-hours {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.opening-hours tr {
    border-bottom: 1px solid var(--beige);
}

.opening-hours td {
    padding: 0.75rem 0;
    text-align: left;
    color: var(--dark-brown);
}

.opening-hours td:first-child {
    font-weight: 600;
    color: var(--primary-burgundy);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-burgundy);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-burgundy);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--beige);
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-brown);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(193, 153, 102, 0.1);
}

.form-group button {
    margin-top: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background-color: var(--dark-burgundy);
    color: var(--light-text);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(245, 241, 237, 0.1);
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 0.75rem;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--light-text);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 165, 116, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--dark-burgundy);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--light-text);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-text);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        min-height: 64px;
        gap: 0;
    }

    .logo { order: 1; }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 2;
        margin-left: auto;
    }

    .cta-button { display: none; }

    .nav-menu {
        order: 3;
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1rem 1rem;
        background: linear-gradient(135deg, rgba(26, 47, 61, 0.95), rgba(38, 70, 83, 0.95));
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        z-index: 150;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        padding: 0.85rem 1.2rem;
        border-radius: 10px;
        margin: 0.2rem 0;
        text-align: left;
        font-size: 1rem;
        border-left: 3px solid transparent;
        transition: background 0.2s ease, border-color 0.2s ease;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        border-left-color: var(--accent-gold);
        transform: none;
    }

    .nav-menu a:after { display: none; }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }

    .about-grid, .catering-grid, .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-grid, .offers-grid, .quality-points {
        grid-template-columns: 1fr;
    }

    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }

    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }

    .strength-item { flex-direction: column; text-align: center; }
    .strength-icon { margin-right: 0; margin-bottom: 1rem; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .assortment h2,
    .about-content h2,
    .catering-content h2,
    .quality-promise h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .quality-quote {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .assortment h2,
    .about-content h2,
    .catering-content h2,
    .quality-promise h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .quality-quote {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   ANIMATIONS
   ============================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =============================================
   RESPONSIVE – HERO + HEADER
   ============================================= */

@media (max-width: 1024px) {
    .header-top-right { display: none; }

    .menu-toggle { display: flex; flex-direction: column; justify-content: center; }

    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        background: white;
        padding: 1.25rem;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        flex-direction: column;
        gap: 0.5rem;
        border-top: 3px solid var(--accent-gold);
    }

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

    .cta-button { display: none; }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-visual { height: 260px; }

    .book-shelf { padding: 1.25rem 1.25rem 0; }

    .book-spine { width: 36px; }
}

@media (max-width: 600px) {
    .hero-text h1 { font-size: 2.6rem; }
    .hero-stats { gap: 1.5rem; }
    .book-spine:nth-child(n+5) { display: none; }
}

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

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

.text-gold {
    color: var(--accent-gold);
}

.text-burgundy {
    color: var(--primary-burgundy);
}

/* =============================================
   RESPONSIVE – NEW SECTIONS
   ============================================= */

@media (max-width: 900px) {
    .category-tiles {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .event-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .event-tag {
        display: none;
    }
}

/* =============================================
   BESCAPE GAMES – FIKTIV-DISCLAIMER
   ============================================= */
.escape-disclaimer {
    background: #0F0C08;
    border-top: 1px solid rgba(200, 117, 40, 0.35);
    padding: 0.5rem 1.5rem;
    position: relative;
    z-index: 300;
}
.escape-disclaimer__inner {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    color: rgba(200, 160, 80, 0.70);
    letter-spacing: 0.04em;
}
.escape-disclaimer__inner i {
    color: rgba(200, 117, 40, 0.70);
    flex-shrink: 0;
}
.escape-disclaimer__inner strong {
    color: rgba(220, 180, 100, 0.90);
    font-weight: 600;
}
.escape-disclaimer__inner a { color: #eb7005; text-decoration: underline; text-decoration-color: rgba(235,112,5,0.35); }
.escape-disclaimer__inner a:hover { color: #f59034; }

.footer-bottom p a {
    color: inherit;
    opacity: 0.75;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.3);
    transition: opacity 0.2s ease;
}
.footer-bottom p a:hover {
    opacity: 1;
    text-decoration-color: currentColor;
}
