:root {
    /* Brand Colors */
    --brand-primary: #ff7a00;
    --brand-primary-dark: #e66d00;
    --brand-dark: #24140b;
    --brand-light: #fff7ef;

    /* Text Colors */
    --text-dark: #2b2b2b;
    --text-muted: #6f6f6f;
    --text-light: #ffffff;

    /* Background Colors */
    --card-bg: #ffffff;
    --bg-light: #fff7ef;
    --bg-overlay: rgba(10, 7, 5, 0.85);

    /* Spacing Scale (Mobile-first) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;

    /* Touch Targets */
    --touch-target: 44px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-brand: 0 8px 24px rgba(255, 122, 0, 0.2);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ============================================
   RESET & BASE STYLES (Mobile-first)
   ============================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(255, 122, 0, 0.1);
}

body {
    margin: 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    touch-action: manipulation;
}

button {
    touch-action: manipulation;
    font-family: inherit;
}

/* Focus States - Accessibility */
*:focus-visible {
    outline: 3px solid var(--brand-primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--brand-primary);
    outline-offset: 3px;
}

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

.is-hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.script-accent {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(24px, 5vw, 32px);
    color: var(--brand-primary);
    display: inline-block;
    margin-bottom: var(--space-xs);
    line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.2;
    margin: 0;
    text-wrap: balance;
}

h1 {
    font-size: clamp(32px, 8vw, 58px);
    margin-bottom: var(--space-sm);
}

h2 {
    font-size: clamp(28px, 6vw, 42px);
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: clamp(20px, 4vw, 28px);
    margin-bottom: var(--space-xs);
}

p {
    margin: 0 0 var(--space-sm);
    line-height: 1.7;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-primary);
    display: inline-block;
    margin-bottom: var(--space-xs);
}

/* ============================================
   HEADER & NAVIGATION (Mobile-first)
   ============================================ */

.custom-header-wrapper {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.custom-header-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .custom-header-bar {
        justify-content: space-between;
    }
}

.custom-header-logo img {
    max-height: 56px;
    width: auto;
}

@media (min-width: 768px) {
    .custom-header-logo img {
        max-height: 72px;
    }
}

/* Mobile Navigation Toggle - Hidden on mobile */
.nav-toggle {
    display: none;
}

/* Mobile Navigation Menu - Hidden on mobile */
.custom-header-nav {
    display: none;
}

.custom-header-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .custom-header-nav {
        display: block !important;
    }

    .custom-header-nav ul {
        flex-direction: row;
        gap: var(--space-lg);
    }

    .custom-header-nav a {
        color: var(--text-light);
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-size: 14px;
        padding: var(--space-xs) 0;
        display: block;
        position: relative;
        transition: color var(--transition-base);
    }

    .custom-header-nav a:hover,
    .custom-header-nav a:focus {
        color: var(--text-light);
    }

    .custom-header-nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: var(--text-light);
        transform: scaleX(0);
        transform-origin: center;
        transition: transform var(--transition-base);
    }

    .custom-header-nav a:hover::after,
    .custom-header-nav a:focus::after {
        transform: scaleX(1);
    }
}

/* ============================================
   BUTTONS (Mobile-first with proper touch targets)
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 14px var(--space-lg);
    border-radius: var(--radius-full);
    font-size: 13px;
    min-height: var(--touch-target);
    transition: transform var(--transition-base),
        background var(--transition-base),
        color var(--transition-base),
        box-shadow var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-light {
    background: var(--text-light);
    color: var(--brand-primary);
}

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

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--brand-primary);
    transform: translateY(-2px);
}

.btn.small {
    padding: 10px var(--space-md);
    font-size: 12px;
}

.btn.full-width {
    width: 100%;
}

/* Primary Button Style */
.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
    color: var(--text-light) !important;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.btn-primary span,
.btn-primary * {
    color: var(--text-light) !important;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    transform: translateY(-2px);
    color: var(--text-light) !important;
}

/* ============================================
   HERO SECTION (Mobile-optimized)
   ============================================ */

.hero {
    background-image: linear-gradient(120deg, var(--bg-overlay), rgba(10, 7, 5, 0.6)),
        url('../img/page_headers/index01.png');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 140px 0 var(--space-3xl);
    margin-top: -40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 180px 0 120px;
        min-height: auto;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 220px 0 170px;
    }
}

.hero-content {
    max-width: 720px;
}

.hero-content h1 {
    color: var(--text-light);
    margin: var(--space-sm) 0;
}

.hero-content p {
    font-size: clamp(16px, 3vw, 18px);
    color: #f7eee5;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

.hero-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    font-size: 14px;
    color: #ffe9d6;
}

.hero-meta strong {
    color: var(--text-light);
}

/* ============================================
   SECTIONS (Mobile-first spacing)
   ============================================ */

.section {
    padding: var(--space-2xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, var(--brand-dark), #4a2a15);
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .section-heading {
        padding: var(--space-xl) var(--space-lg);
        border-radius: var(--radius-xl);
    }
}

.section-heading h2 {
    color: var(--text-light);
    margin: var(--space-xs) 0;
}

.section-heading p {
    color: #f9e6d3;
    margin: 0;
    font-size: clamp(14px, 2.5vw, 16px);
}

/* ============================================
   MENU TOGGLE (Mobile-optimized)
   ============================================ */

.menu-toggle {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin: 0 auto var(--space-md);
    flex-wrap: wrap;
}

.menu-toggle-btn {
    appearance: none;
    border: 2px solid rgba(36, 20, 11, 0.18);
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-dark);
    padding: 12px var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    min-height: var(--touch-target);
    transition: background var(--transition-base),
        color var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-fast);
    font-size: 14px;
}

.menu-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.menu-toggle-btn.is-active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--text-light);
}

/* ============================================
   MENU SLIDER (Mobile-optimized with touch)
   ============================================ */

.menu-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.menu-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
    display: flex;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
}

.menu-slider::-webkit-scrollbar {
    display: none;
}

.menu-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: center;
    min-width: 100%;
}

.menu-slide img {
    width: 100%;
    max-width: min(520px, 92vw);
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .menu-slide {
        min-width: auto;
    }

    .menu-slide img {
        max-width: 720px;
        max-height: 720px;
    }
}

/* Menu Navigation Arrows - Hidden on mobile */
.menu-slider-arrow {
    display: none;
}

@media (min-width: 768px) {
    .menu-slider-arrow {
        display: inline-flex;
        background: var(--brand-primary);
        border: none;
        color: var(--text-light);
        font-size: 20px;
        cursor: pointer;
        min-width: 48px;
        min-height: 48px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        transition: transform var(--transition-base),
            opacity var(--transition-base),
            box-shadow var(--transition-base);
    }

    .menu-slider-arrow:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-brand);
    }
}

.menu-slider-hint {
    text-align: center;
    margin-top: var(--space-md);
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   CARDS & GRIDS (Mobile-first)
   ============================================ */

.highlights-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-card {
    background: var(--card-bg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: 24px;
    margin-bottom: var(--space-sm);
}

.highlight-card h3 {
    margin-bottom: var(--space-xs);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
}

.highlight-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   STORY SECTION (Mobile-first)
   ============================================ */

.story-section {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 420px;
}

@media (min-width: 768px) {
    .story-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

.story-media {
    background-image: linear-gradient(rgba(9, 6, 4, 0.4), rgba(9, 6, 4, 0.4)),
        url('../img/page_headers/contacts01.jpg');
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

@media (min-width: 768px) {
    .story-media {
        min-height: 420px;
    }
}

.story-content {
    background: var(--card-bg);
    display: flex;
    align-items: center;
    padding: var(--space-xl) var(--space-md);
}

@media (min-width: 768px) {
    .story-content {
        padding: var(--space-2xl) var(--space-xl);
    }
}

.story-content h2 {
    font-size: clamp(24px, 5vw, 34px);
    margin: var(--space-xs) 0 var(--space-md);
}

.story-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

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

.contact-section {
    background: var(--card-bg);
}

.contact-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.contact-card h4 {
    margin-top: 0;
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.contact-card a {
    color: var(--brand-primary);
    font-weight: 600;
    transition: color var(--transition-base);
}

.contact-card a:hover {
    color: var(--brand-primary-dark);
}

.contact-card .btn-light {
    margin-top: var(--space-sm);
}

.card-subtitle {
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

/* Hours List */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: var(--space-xs) 0;
    font-size: 15px;
    gap: var(--space-sm);
}

@media (max-width: 480px) {
    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

.hours-list .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-list .time {
    font-weight: 600;
    color: var(--brand-primary);
}

.hours-list .time.closed {
    color: #d14b4b;
}

/* Contact Links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin: var(--space-sm) 0;
}

.contact-link {
    font-weight: 600;
    color: var(--text-dark);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: border var(--transition-base),
        transform var(--transition-base),
        box-shadow var(--transition-base);
    min-height: var(--touch-target);
}

.contact-link.highlight {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.contact-link:hover {
    border-color: var(--brand-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

address {
    font-style: normal;
    line-height: 1.6;
    font-weight: 600;
}

/* ============================================
   MODERN CONTACT SECTION - 2026 Minimal Design
   ============================================ */

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-header {
    margin-bottom: var(--space-xs);
}

.contact-header h4 {
    margin-bottom: var(--space-xs);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 122, 0, 0.03);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--brand-primary);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: rgba(255, 122, 0, 0.08);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border-radius: var(--radius-sm);
    color: var(--brand-primary);
}

.contact-icon i {
    color: var(--brand-primary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-muted);
}

.contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-base);
    word-break: break-word;
}

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

.contact-value address {
    font-style: normal;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   MAP SECTION
   ============================================ */

.map-section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.map-embed iframe {
    width: 100%;
    min-height: 350px;
    border: 0;
    display: block;
}

@media (min-width: 768px) {
    .map-embed iframe {
        min-height: 420px;
    }
}

/* ============================================
   FOOTER (Mobile-first)
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #120603, #1e0904);
    color: var(--text-light);
    padding: var(--space-2xl) 0 var(--space-lg);
}

@media (min-width: 768px) {
    .site-footer {
        padding: var(--space-3xl) 0 var(--space-xl);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand img {
    max-height: 64px;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: #e8dcd3;
    line-height: 1.6;
}

.footer-column h4 {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    margin-bottom: var(--space-sm);
}

.footer-column p {
    color: #d3c6be;
    line-height: 1.6;
}

.footer-column .contact-link {
    display: inline-block;
    margin-bottom: var(--space-xs);
    color: var(--text-light);
    font-weight: 600;
    border: none;
    padding: 0;
}

.footer-column .btn {
    margin-top: var(--space-sm);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.footer-column .btn:hover {
    background: var(--text-light);
    color: var(--brand-primary);
    border-color: var(--text-light);
}

.footer-socials {
    margin-top: var(--space-sm);
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-sm);
    font-size: 18px;
    color: var(--text-light);
    min-width: var(--touch-target);
    min-height: var(--touch-target);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.footer-socials a:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    text-align: center;
}

.site-footer p {
    margin: 0;
    color: #c9c2bc;
    font-size: 14px;
}

/* ============================================
   PERFORMANCE & ACCESSIBILITY
   ============================================ */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {

    .custom-header-wrapper,
    .nav-toggle,
    .menu-toggle,
    .menu-slider-arrow,
    .footer-socials {
        display: none;
    }

    .hero {
        padding: var(--space-lg) 0;
        min-height: auto;
    }
}