/* =============================================
   THE SQUARE CAFÉ — Main Stylesheet
   Theme: Royal Blue (#1B3A8C) + White + Warm accents
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-primary: #1B3A8C;
    --blue-dark: #0F2460;
    --blue-deeper: #0A1A45;
    --blue-light: #2A4FAE;
    --white: #FFFFFF;
    --off-white: #F5F6FA;
    --cream: #FAFBFF;
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --text-dark: #1A1A2E;
    --text-medium: #4A4A6A;
    --text-light: #7A7A9A;
    --border-light: #E0E3EE;
    --shadow-sm: 0 2px 8px rgba(15, 36, 96, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 36, 96, 0.1);
    --shadow-lg: 0 8px 40px rgba(15, 36, 96, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Michroma', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

.section {
    padding: 100px 0;
}

/* --- Section Typography --- */
.section-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue-primary);
    margin-bottom: 16px;
}

.section-label-light {
    color: var(--gold-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-title-light {
    color: var(--white);
}

.section-divider {
    display: flex;
    gap: 6px;
    margin-bottom: 32px;
}

.section-divider-light .divider-dot {
    background: var(--gold);
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--blue-primary);
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-divider,
.menu-cta-content .section-divider {
    justify-content: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

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

.btn-secondary {
    background: transparent;
    color: var(--blue-primary);
    border: 1.5px solid var(--blue-primary);
}

.btn-secondary:hover {
    background: var(--blue-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 44px;
    font-size: 0.8rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 36, 96, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

.nav-logo-link {
    display: flex;
    align-items: center;
}

.nav-logo-mark {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 3px;
    white-space: nowrap;
}

.nav-dots {
    display: flex;
    gap: 3px;
}

.nav-dots span {
    width: 4px;
    height: 4px;
    background: var(--white);
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a:not(.nav-menu-btn):hover {
    color: var(--white);
}

.nav-links a:not(.nav-menu-btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:not(.nav-menu-btn):hover::after,
.nav-links a:not(.nav-menu-btn).active::after {
    width: 100%;
}

.nav-menu-btn {
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-display) !important;
    font-size: 0.68rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
}

.nav-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
    position: relative;
}

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

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

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

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

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-deeper);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(10, 26, 69, 0.85) 0%, rgba(27, 58, 140, 0.5) 50%, rgba(10, 26, 69, 0.8) 100%),
        radial-gradient(ellipse at 50% 120%, rgba(27, 58, 140, 0.4) 0%, transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

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

/* --- Logo Recreation --- */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
    padding: 24px 40px;
    background: var(--blue-primary);
    border-radius: 4px;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.logo-container-small {
    padding: 14px 24px;
    margin-bottom: 0;
    box-shadow: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 400px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2.6rem);
    color: var(--white);
    letter-spacing: 6px;
    white-space: nowrap;
    font-weight: 400;
    line-height: 1;
}

.logo-text-small {
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    letter-spacing: 4px;
}

.logo-dots {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.logo-dots-left {
    flex-direction: row;
}

.logo-dots-right {
    flex-direction: row;
}

.dot-group {
    display: flex;
    gap: 4px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    display: block;
}

.logo-container-small .dot {
    width: 5px;
    height: 5px;
}

.logo-container-small .dot-group {
    gap: 3px;
}

.logo-container-small .logo-dots {
    gap: 7px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-scroll-indicator {
    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.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
    animation: fadeInUp 1s ease-out 0.8s both;
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
    background: var(--cream);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--blue-primary);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.2;
}

.about-text {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-text:last-of-type {
    margin-bottom: 32px;
}

/* =============================================
   GALLERY / SLIDESHOW
   ============================================= */
.gallery {
    background: var(--white);
}

.slideshow-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0;
}

.gallery .container + .slideshow-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: min(1000px, calc(100% - 48px));
}

.slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px 32px;
    background: linear-gradient(to top, rgba(10, 26, 69, 0.85) 0%, transparent 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.slide-caption-label {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--white);
    letter-spacing: 1px;
}

.slide-caption-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slide-btn svg {
    width: 20px;
    height: 20px;
}

.slide-btn-prev {
    left: 16px;
}

.slide-btn-next {
    right: 16px;
}

.slide-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.slide-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.slide-indicator.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* =============================================
   MENU CTA
   ============================================= */
.menu-cta {
    position: relative;
    background: var(--blue-deeper);
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.menu-cta-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(27, 58, 140, 0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(42, 79, 174, 0.3) 0%, transparent 60%);
}

.menu-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.menu-cta-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

/* =============================================
   OPENING HOURS
   ============================================= */
.hours {
    background: var(--cream);
}

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

.hours-table {
    margin-top: 8px;
}

.hours-row {
    display: flex;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.hours-row-highlight .hours-day,
.hours-row-highlight .hours-time {
    color: var(--blue-primary);
    font-weight: 600;
}

.hours-day {
    font-weight: 500;
    min-width: 110px;
    font-size: 0.95rem;
}

.hours-divider-line {
    flex: 1;
    height: 1px;
    background: var(--border-light);
    margin: 0 16px;
}

.hours-time {
    font-size: 0.95rem;
    color: var(--text-medium);
    text-align: right;
    white-space: nowrap;
}

.hours-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.hours-note svg {
    color: var(--blue-primary);
    flex-shrink: 0;
}

.hours-image-wrapper {
    position: relative;
}

.hours-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.hours-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--blue-primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.badge-text-top {
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.8;
}

.badge-text-bottom {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* =============================================
   LOCATION
   ============================================= */
.location {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

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

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

a.contact-value:hover {
    color: var(--blue-primary);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--blue-deeper);
    padding: 60px 0 32px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-logo {
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    letter-spacing: 0.5px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    font-size: 0.8rem;
}

.footer-credit {
    margin-top: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-credit a:hover {
    color: var(--gold);
}

/* =============================================
   MOBILE OVERLAY NAV
   ============================================= */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--blue-deeper);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 24px;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
}

.mobile-overlay.open .mobile-overlay-content {
    transform: translateY(0);
    opacity: 1;
}

.mobile-overlay-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-overlay-logo .logo-text-small {
    font-size: 0.75rem;
    letter-spacing: 3px;
}

.mobile-overlay-logo .dot {
    width: 4px;
    height: 4px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 16px 0;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
    color: var(--white);
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover::after {
    width: 40px;
}

.mobile-menu-cta {
    margin-top: 8px;
}

.mobile-overlay-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}

.mobile-phone {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.mobile-phone:hover {
    color: var(--white);
}

.mobile-hours {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about-grid,
    .hours-grid {
        gap: 48px;
    }

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

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

    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-logo-text {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .nav-dots span {
        width: 3px;
        height: 3px;
    }

    /* Hero */
    .logo-container {
        padding: 18px 20px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo-dots {
        gap: 6px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        aspect-ratio: 16 / 10;
    }

    .about-image-accent {
        display: none;
    }

    /* Gallery */
    .slideshow {
        aspect-ratio: 4 / 3;
    }

    .slide-caption {
        padding: 40px 20px 20px;
    }

    .slide-caption-label {
        font-size: 0.8rem;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
    }

    .slide-btn svg {
        width: 16px;
        height: 16px;
    }

    .slide-btn-prev {
        left: 10px;
    }

    .slide-btn-next {
        right: 10px;
    }

    /* Menu CTA */
    .menu-cta {
        padding: 80px 0;
    }

    /* Hours */
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hours-image-wrapper {
        order: -1;
    }

    .hours-image {
        aspect-ratio: 16 / 10;
    }

    .hours-badge {
        bottom: auto;
        top: -12px;
        left: auto;
        right: 16px;
        padding: 14px 18px;
    }

    .hours-day {
        min-width: 80px;
        font-size: 0.85rem;
    }

    .hours-time {
        font-size: 0.85rem;
    }

    /* Location */
    .map-wrapper {
        min-height: 300px;
    }

    .map-wrapper iframe {
        min-height: 300px;
    }

    .contact-card {
        gap: 16px;
    }

    .contact-item {
        padding: 18px;
    }

    /* Footer */
    .footer-links {
        gap: 20px;
    }
}

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

    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }

    .logo-dots-left .dot-group:first-child,
    .logo-dots-right .dot-group:last-child {
        display: none;
    }

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

    .btn-large {
        padding: 16px 32px;
        font-size: 0.72rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .slideshow {
        aspect-ratio: 3 / 4;
    }

    .slideshow-wrapper {
        border-radius: var(--radius-md);
    }

    .gallery .container + .slideshow-wrapper {
        max-width: calc(100% - 32px);
    }

    .hours-row {
        padding: 10px 0;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

/* --- Print --- */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .slide-btn,
    .slide-indicators {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 40px 0;
    }
}
