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

        :root {
            --primary-brown: #884b05;
            --primary-brown-light: #b8681f;
            --primary-brown-dark: #6b3a04;
            --text-color: #333;
            --bg-color: #fafafa;
            --white: #ffffff;
            --black: #000000;
            --border-color: #ddd;
            --focus-outline: #000000;
            --success-bg: #e8f4f8;
            --success-border: #0066cc;
            --warning-bg: #fff3cd;
            --warning-border: #ffc107;
        }

        html {
            font-size: 100%; /* 16px base */
        }

        body {
            font-family: 'Trebuchet MS', sans-serif;
            line-height: 1.6;
            font-size: 1.125rem; /* 18px */
            color: var(--text-color);
            background: var(--bg-color);
        }

        body.large-text {
            font-size: 1.25rem; /* 20px */
        }

        body.larger-text {
            font-size: 1.375rem; /* 22px */
        }

        body.high-contrast {
            --text-color: #000;
            --bg-color: #fff;
            --primary-brown: #000;
            --primary-brown-light: #333;
            --primary-brown-dark: #000;
        }

        body.high-contrast .site-header {
            background: #fff;
            color: #000;
            border-bottom-color: #000;
        }

        body.high-contrast .btn-primary {
            background: #000;
            color: #fff;
            border: 0.125rem solid #000;
        }

        body.high-contrast .restaurant-card {
            border: 0.125rem solid #000;
        }
        
        body.high-contrast .accordion {
            background: #000;
            color: #fff;
            border: 0.125rem solid #fff;
        }
        
        body.high-contrast .accordion::before {
            border-top-color: #fff;
        }
       
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 0.1875rem dashed var(--focus-outline);
            outline-offset: 0.1875rem;
        }
        
        /* Remove outline when not actively focused */
        a:not(:focus-visible),
        button:not(:focus-visible),
        input:not(:focus-visible),
        select:not(:focus-visible),
        textarea:not(:focus-visible) {
            outline: none;
        }
        
        /* Navigation links get solid outline instead of dashed */
        .main-nav a:focus-visible {
            outline: 0.1875rem solid var(--black);
            outline-offset: 0.125rem;
        }

        .skip-link {
            position: absolute;
            top: -100%;
            left: 0;
            background: var(--black);
            color: var(--white);
            padding: 0.75rem 1rem;
            text-decoration: none;
            z-index: 100;
            font-weight: 600;
            clip: rect(0, 0, 0, 0);
            overflow: hidden;
        }

        .skip-link:focus {
            top: 0;
            clip: auto;
            overflow: visible;
        }

        /* SITE HEADER */
        .site-header {
            background: var(--white);
            color: var(--text-color);
            padding: 0.9375rem 1.25rem; /* 15px 20px */
            position: sticky;
            top: 0;
            z-index: 50;
            box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.1);
            border-bottom: 0.0625rem solid #e0e0e0;
        }

        .header-container {
            max-width: 75rem; /* 1200px */
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.3125rem; /* 5px */
            text-decoration: none;
            color: var(--text-color);
            flex-shrink: 0;
        }

        .logo img {
            height: 2.5rem; /* 40px */
            width: auto;
        }

        .logo-text {
            font-family: 'Work Sans', sans-serif;
            font-size: 1rem; /* 16px */
            font-weight: 900;
            color: var(--black);
        }

        .main-nav {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            margin-right: auto;
        }

        .main-nav a {
            color: var(--black);
            text-decoration: none;
            font-weight: 400;
            padding: 0.5rem 0.75rem;
            border-left: 0.0625rem solid #ccc;
            position: relative;
        }

        .main-nav a:first-child {
            border-left: none;
        }

        .main-nav a:hover {
            color: var(--primary-brown);
            text-decoration: underline;
        }
        
        .main-nav a:focus-visible {
            color: var(--primary-brown);
            text-decoration: underline;
            outline: 0.1875rem solid var(--black);
            outline-offset: 0.125rem;
        }

        .header-controls {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .accessibility-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .text-size-controls {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .text-size-controls button {
            background: transparent;
            border: none;
            color: var(--primary-brown);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            min-width: 2rem;
            min-height: 2rem;
            padding: 0.25rem;
            font-size: 0.875rem;
        }

        .text-size-controls button:hover,
        .text-size-controls button:focus {
            color: var(--primary-brown-dark);
            transform: scale(1.1);
        }

        .text-size-controls button.small {
            font-size: 1em;
              font-family: 'Work Sans', sans-serif;
        }

        .text-size-controls button.medium {
            font-size: 1.75rem;
              font-family: 'Work Sans', sans-serif;
        }

        .text-size-controls button.large {
            font-size: 2.35rem;
              font-family: 'Work Sans', sans-serif;
        }

        .reset-link {
            color: var(--primary-brown);
            text-decoration: none;
            font-size: 0.875rem;
            padding: 0.25rem 0.5rem;
            margin-left: 0.25rem;
        }

        .reset-link:hover,
        .reset-link:focus {
            text-decoration: underline;
        }

        .contrast-toggle {
            background: transparent;
            border: 0.125rem solid #ccc;
            border-radius: 1.25rem;
            width: 2.5rem;
            height: 1.5rem;
            cursor: pointer;
            position: relative;
            transition: all 0.3s;
            padding: 0;
        }

        .contrast-toggle::after {
            content: '';
            position: absolute;
            top: 0.125rem;
            left: 0.125rem;
            width: 1.125rem;
            height: 1.125rem;
            background: #666;
            border-radius: 50%;
            transition: all 0.3s;
        }

        body.high-contrast .contrast-toggle::after {
            left: 1.125rem;
            background: var(--black);
        }

        body.high-contrast .contrast-toggle {
            border-color: var(--black);
        }

        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: var(--black);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            min-width: 2.75rem;
            min-height: 2.75rem;
        }

        /* HERO BANNER */
        .hero-banner {
            position: relative;
            text-align: center;
            overflow: hidden;
        }

        .hero-banner-image {
            width: 100%;
            height: auto;
            display: block;
            max-height: 25rem;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1rem;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .hero-logo {
            width: 12.5rem; /* 200px */
            height: auto;
        }

        .hero-tagline {
            color: var(--white);
            font-size: 1.125rem;
            max-width: 50rem;
            padding: 0 1rem;
            text-shadow: 0.0625rem 0.0625rem 0.125rem rgba(0,0,0,0.5);
        }

        .hero-content h1 {
            position: absolute;
            width: 0.0625rem;
            height: 0.0625rem;
            padding: 0;
            margin: -0.0625rem;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* CTA BUTTONS SECTION */
        .cta-buttons {
            background: var(--primary-brown);
            padding: 2rem 1.25rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            border-bottom: 5px dashed var(--white);
            font-family:'Work Sans', sans-serif;
        }

        .cta-btn {
            background: var(--white);
            color: var(--primary-brown-dark);
            border: none;
            border-radius:30px;
            padding: 0.875rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            min-width: 9rem;
            flex: 0 1 auto;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover,
        .cta-btn:focus {
            background:#000;
            color: var(--white);
            transform: translateY(-0.125rem);
        }

        .container {
            max-width: 75rem; /* 1200px */
            margin: 0 auto;
            padding: 2.5rem 1.25rem; /* 40px 20px */
        }

        .location-section {
            padding: 1.875rem; /* 30px */
            margin-bottom: 2.5rem; /* 40px */
        }

        .location-prompt h2 {
            font-size: 2.3rem; /* ~37px */
            margin-bottom: 0.9375rem; /* 15px */
            color: var(--black);
            font-family:'Work Sans', sans-serif;
        }

        .btn {
            display: inline-block;
            padding: 0.875rem 1.75rem; /* 14px 28px */
            border: none;
            border-radius: 30px;
            font-size: 1.125rem; /* 18px */
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            margin: 0.625rem; /* 10px */
            transition: all 0.3s;
            min-height: 2.75rem; /* 44px - touch target */
        }

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

        .btn-primary:hover,
        .btn-primary:focus {
            transform: translateY(-0.125rem);
            box-shadow: 0 0.25rem 0.75rem rgba(136, 75, 5, 0.3);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-brown-dark);
            border: 0.125rem solid var(--primary-brown);
        }

        .btn-secondary:hover,
        .btn-secondary:focus {
            background: var(--primary-brown);
            color: var(--white);
        }

        .loading {
            padding: 2.5rem; /* 40px */
            font-size: 1.25rem; /* 20px */
            color: #4a4a4a;
        }

        .loading::after {
            content: '...';
            animation: dots 1.5s infinite;
        }

        @keyframes dots {
            0%, 20% { content: '.'; }
            40% { content: '..'; }
            60%, 100% { content: '...'; }
        }

        .location-detected {
            background: var(--success-bg);
            border-left: 0.25rem solid var(--success-border);
            padding: 0.9375rem 1.25rem; /* 15px 20px */
            margin-bottom: 1.875rem; /* 30px */
            border-radius: 0.25rem; /* 4px */
            font-size: 1.125rem; /* 18px */
        }

        .location-detected svg {
            width: 1.25rem; /* 20px */
            height: 1.25rem; /* 20px */
            vertical-align: middle;
            margin-right: 0.5rem; /* 8px */
        }

        .section-heading {
            font-size: 2rem; /* 32px */
            font-family: 'Work Sans', sans-serif;
            font-weight: 800;
            color: var(--black);
        }

        .state-heading {
            font-size: 2rem; /* 28px */
            color: var(--primary-brown);
            margin-bottom: 1.25rem; /* 20px */
            font-family: 'Work Sans', sans-serif;
            border-bottom: solid 2px var(--primary-brown);
            text-transform: uppercase;
        }

        .city-section {
            margin-bottom: 1.5625rem; /* 25px */
            margin-left: 1.25rem; /* 20px */
        }

        .city-heading {
            font-size: 1.25rem; /* 20px */
            color: #333;
            margin-bottom: 0.9375rem; /* 15px */
        }

        .state-group {
            margin-bottom: 2.5rem; /* 40px */
        }

        .restaurant-list {
            list-style: none;
        }

        .restaurant-card {
            background: var(--white);
            border-radius: 0.5rem; /* 8px */
            padding: 1.5625rem; /* 25px */
            margin-bottom: 1.25rem; /* 20px */
            box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .restaurant-card:hover,
        .restaurant-card:focus-within {
            box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.15);
            transform: translateY(-0.125rem);
        }

        .restaurant-card h3 {
            font-size: 1.5rem; /* 24px */
            color: var(--primary-brown);
            margin-bottom: 0.625rem; /* 10px */
        }

        .restaurant-card h3 a {
            color: var(--primary-brown);
            text-decoration: underline;
        }

        .restaurant-card h3 a:hover,
        .restaurant-card h3 a:focus {
            color: var(--primary-brown-dark);
        }

        .restaurant-info {
            display: flex;
            align-items: center;
            gap: 0.5rem; /* 8px */
            margin: 0.5rem 0; /* 8px 0 */
            color: #666;
        }

        .restaurant-info svg {
            width: 1.125rem; /* 18px */
            height: 1.125rem; /* 18px */
            flex-shrink: 0;
        }

        .restaurant-info strong {
            color: var(--primary-brown-dark);
            font-weight: 700;
        }

        .distance {
            display: inline-block;
            background: var(--primary-brown);
            color: var(--white);
            padding: 0.25rem 0.75rem; /* 4px 12px */
            font-size: 0.9rem; /* ~14px */
            font-weight: 600;
            margin-top: 0.5rem; /* 8px */
        }

        .rating {
            display: flex;
            gap: 0.1875rem; /* 3px */
            margin-top: 0.5rem; /* 8px */
        }

        .star {
            color: #ffa500;
            font-size: 1.1rem; /* ~18px */
        }

        .search-section {
            background: var(--white);
            padding: 1.875rem; /* 30px */
            border-radius: 0.5rem; /* 8px */
            margin-bottom: 2rem; 
        }

        .search-box {
            display: flex;
            gap: 1rem; /* Increased from 10px to 16px */
            max-width: 37.5rem; /* 600px */
            align-items: flex-end; /* Aligns all items to bottom */
        }

        .search-box input {
            width: 100%;
            padding: 0.75rem 1.25rem; /* 12px 20px */
            border: 1px solid #000;
            border-radius: 0.5rem; /* 8px */
            font-size: 1rem; /* 16px */
            min-height: 2.75rem; /* 44px - touch target */
        }

        .search-box input:focus {
            border-color: var(--primary-brown);
        }

        .no-results {
            padding: 1.25rem; /* 20px */
            margin: 1.25rem 0; /* 20px 0 */
            border-radius: 0.25rem; /* 4px */
        }

        /* SITE FOOTER */
        .site-footer {
            color: var(--black);
            padding: 3.125rem 1.25rem 1.25rem; /* 50px 20px 20px */
        }

        .footer-container {
            max-width: 75rem; /* 1200px */
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem; /* 40px */
            margin-bottom: 2.5rem; /* 40px */
        }

        .suggest-menu-form {
            background: var(--primary-brown);
            padding: 1.875rem; /* 30px */
        }

        .suggest-menu-form h3 {
            font-family: 'Work Sans', sans-serif;
            font-size: 1.75rem; 
            margin-bottom: 1.25rem; /* 20px */
            color:#fff;
        }

        .form-group {
            margin-bottom: 0.9375rem; /* 15px */
        }

        .form-group label {
            display: block;
            margin-bottom: 0.3125rem; /* 5px */
            font-weight: 600;
            color:#fff;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.625rem; /* 10px */
            border: none;
            border-radius: 0.25rem; /* 4px */
            font-size: 1rem; /* 16px */
            font-family: inherit;
            color: var(--text-color);
            min-height: 2.75rem; /* 44px - touch target */
        }

        .form-group textarea {
            min-height: 6.25rem; /* 100px */
            resize: vertical;
        }

        .btn-submit {
            background: var(--black);
            color: var(--white);
            padding: 0.75rem 1.875rem; /* 12px 30px */
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1rem; /* 16px */
            min-height: 2.75rem; /* 44px - touch target */
        }

        .btn-submit:hover,
        .btn-submit:focus {
            background: #333;
            transform: translateY(-0.125rem);
        }

        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 1.25rem; /* 20px */
        }

        .footer-text {
            font-size: 0.95rem; /* ~15px */
            line-height: 1.8;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 0.625rem; /* 10px */
        }

        .footer-links a {
            color: var(--black);
            text-decoration: underline;
            transition: opacity 0.3s;
        }

        .footer-links a:hover,
        .footer-links a:focus {
            opacity: 0.8;
        }

        .social-links {
            display: flex;
            gap: 0.9375rem; /* 15px */
            margin-top: 0.625rem; /* 10px */
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.75rem; /* 44px - touch target */
            height: 2.75rem; /* 44px - touch target */
            background: var(--white);
            border-radius: 50%;
            transition: transform 0.3s;
        }

        .social-links a:hover,
        .social-links a:focus {
            transform: scale(1.1);
        }

        .social-links svg {
            width: 1.5rem; /* 24px */
            height: 1.5rem; /* 24px */
        }

        .footer-bottom {
            text-align: center;
            border-top: 0.0625rem solid rgba(255,255,255,0.3);
            font-size: 0.9rem; /* ~14px */
        }

        /* Utility class to hide content visually but keep it for screen readers */
        .sr-only {
            position: absolute;
            width: 0.0625rem;
            height: 0.0625rem;
            padding: 0;
            margin: -0.0625rem;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
        
        /* Voice Input Styles */
        .voice-input-wrapper {
            position: relative;
            display: flex;
            align-items: flex-end; /* Align to bottom */
            gap: 1rem; /* Increased from 8px to 16px */
        }
        
        .voice-input-wrapper input,
        .voice-input-wrapper textarea {
            flex: 1;
        }
        
        .voice-btn {
            background:var(--black);
            color: var(--white);
            border: 3px solid var(--primary-brown);
            border-radius: 50%;
            width: 2.75rem; /* 44px */
            height: 2.75rem; /* 44px */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
        }
            transition: all 0.3s;
            flex-shrink: 0;
        }
        
        .voice-btn:hover {
            background: var(--primary-brown-dark);
            transform: scale(1.05);
        }
        
        .voice-btn:active {
            transform: scale(0.95);
        }
        
        .voice-btn:focus-visible {
            outline: 0.1875rem solid var(--black);
            outline-offset: 0.125rem;
        }
        
        .voice-btn.listening {
            background: #dc3545;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        
        .voice-btn svg {
            width: 1.25rem;
            height: 1.25rem;
        }
        
        .voice-status {
            font-size: 0.875rem;
            color: var(--primary-brown);
            font-weight: 600;
            margin-top: 0.25rem;
        }
        
        body.high-contrast .voice-btn {
            background: #000;
            border: 0.125rem solid #fff;
        }
        
        body.high-contrast .voice-btn.listening {
            background: #000;
            border-color: #fff;
        }
        
        .accordion {
          background-color: #000;
          color: #fff;
          cursor: pointer;
          padding: 18px 18px 18px 50px;
          width: 100%;
          border: none;
          text-align: left;
          outline: none;
          font-size: 15px;
          transition: 0.4s;
          position: relative;
        }
        
        /* Chevron icon for accordion */
        .accordion::before {
          content: '';
          position: absolute;
          left: 18px;
          top: 50%;
          transform: translateY(-50%);
          width: 0;
          height: 0;
          border-left: 8px solid transparent;
          border-right: 8px solid transparent;
          border-top: 10px solid #fff;
          transition: transform 0.3s ease;
        }
        
        .accordion.active::before {
          transform: translateY(-50%) rotate(180deg);
        }

        .active, .accordion:hover {
          background-color: #333; 
        }
        
        .accordion h2 {
          color: #fff;
          margin: 0;
          display: inline;
        }

        .panel {
          padding:20px 18px;
          display: none;
          background-color: white;
          overflow: visible;
        box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.1);
        
        }

        /* MOBILE RESPONSIVE */
        @media (max-width: 48rem) { /* 768px */
            .header-container {
                flex-wrap: wrap;
            }

            .location-section {
                padding: .1rem;
            }
            
            .main-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 1.25rem;
                box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.2);
                border-top: 0.0625rem solid #e0e0e0;
            }

            .main-nav a {
                border-left: none;
                border-bottom: 2px solid #e0e0e0;
                padding: 0.75rem;
                
            }

            .main-nav a:last-child {
                border-bottom: none;
            }

            .main-nav.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .accessibility-controls {
                flex-wrap: wrap;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-btn {
                width: 70%;
            }

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

            .search-box {
                flex-direction: column;
            }
        }

        @media (max-width: 30rem) { /* 480px */
            .logo img {
                height: 2rem;
            }

            .main-nav a {
                font-size: 1.75rem;
                font-family: 'Work Sans', sans-serif;
                text-align: right;
            }

            .text-size-controls {
                font-size: 0.75rem;
            }

            .hero-logo {
                width: 10rem;
            }

            .section-heading {
                font-size: 1.5rem;
            }

            .location-prompt h2 {
                font-size: 1.75rem;
            }
        }
