/* ==========================================================
   Bradley's on the Square — Optimized Static Rebuild
   Color palette: #945900 primary, #a36700 accent, #2b2b2b dark
   Fonts: Arial (body/h1), Lucida Console (h2/h3 accent)
   ========================================================== */

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

:root {
    --primary: #945900;
    --primary-light: #b8730a;
    --primary-dark: #784600;
    --accent: #a36700;
    --secondary: #a66605;
    --bg: #f9f6f2;
    --bg-alt: #f5f0eb;
    --bg-warm: #eee8e0;
    --dark: #2b2b2b;
    --darker: #1a1a1a;
    --text: #2d2d2d;
    --text-light: #666;
    --text-muted: #888;
    --white: #fff;
    --overlay: rgba(0,0,0,0.65);
    --shadow: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.12);
    --header-height: 90px;
    --max-width: 1200px;
    --font-body: Arial, Helvetica, sans-serif;
    --font-heading: 'Lucida Console', Monaco, monospace;
    --radius: 8px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

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

/* ── HEADER ──────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 111;
    transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}

.header.transparent {
    background: transparent;
}

.header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo img {
    height: 50px;
    width: auto;
    transition: opacity var(--transition);
}

.logo:hover img { opacity: .8; }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: block;
    padding: 0 18px;
    line-height: var(--header-height);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--white);
    transition: color var(--transition), background var(--transition);
    text-transform: uppercase;
}

.header.scrolled .logo img {
    filter: brightness(0.35);
}

.header.scrolled .nav-menu li a {
    color: var(--dark);
}

.nav-menu li a:hover {
    color: var(--primary-light);
}

.header.scrolled .nav-menu li a:hover {
    color: var(--primary);
}

.nav-menu li.active > a {
    color: rgba(255,255,255,0.5);
}

.header.scrolled .nav-menu li.active > a {
    color: var(--primary);
}

/* Phone button in nav */
.nav-phone a {
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius) !important;
    padding: 10px 20px !important;
    line-height: 1.2 !important;
    font-size: 15px !important;
    color: var(--primary) !important;
    text-transform: none !important;
    transition: all var(--transition) !important;
    margin-left: 10px;
}

.header.transparent .nav-phone a {
    border-color: rgba(255,255,255,0.6) !important;
    color: var(--white) !important;
}

.nav-phone a:hover {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

/* Dropdown */
.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    z-index: 200;
    list-style: none;
    overflow: hidden;
    opacity: 0;
    padding: 8px 0;
}

.has-dropdown:hover .dropdown {
    display: block;
    animation: dropIn .25s ease forwards;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-5px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown li a {
    padding: 10px 24px !important;
    line-height: 1.4 !important;
    color: var(--text) !important;
    font-size: 14px !important;
    text-transform: none !important;
}

.dropdown li a:hover {
    background: var(--bg-alt) !important;
    color: var(--primary) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 112;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center;
}

.header.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.active span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 900px) {
    .hero { background-attachment: scroll; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0.3) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 520px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 6px 30px rgba(0,0,0,.4));
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 16px 36px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(148,89,0,.3);
}

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

.btn-white:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(255,255,255,.25);
}

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

.btn-solid:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 16px;
}

/* ── FOOD GALLERY ────────────────────────────────────────── */
.gallery-section {
    background: var(--accent);
    padding: 80px 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 3/2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background var(--transition);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.15) 60%);
}

.gallery-label {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    transform: translateY(5px);
    opacity: 0;
    transition: all .4s ease;
}

.gallery-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 4px;
}

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

/* Customer image - no overlay */
.gallery-item.no-link {
    cursor: default;
}

/* ── HIGHLIGHTS SECTION ──────────────────────────────────── */
.highlights-section {
    background: var(--bg);
    padding: 80px 0;
}

.highlights-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 100px;
    padding: 6px 20px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: .75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

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

.highlight-img {
    aspect-ratio: 3/2;
    overflow: hidden;
}

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

.highlight-card:hover .highlight-img img {
    transform: scale(1.06);
}

.highlight-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .4rem;
    padding: 1.25rem 1rem 0;
}

.highlight-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 1rem 1.25rem;
}

/* ── WELCOME / ABOUT SECTION ─────────────────────────────── */
.welcome-section {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

@media (max-width: 900px) {
    .welcome-section { background-attachment: scroll; }
}

.welcome-section .overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}

.welcome-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 3.5rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    background: rgba(0,0,0,0.2);
}

.welcome-content .section-badge {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.3);
}

.welcome-content h2 {
    font-family: var(--font-body);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.welcome-content h2 em {
    font-style: italic;
    font-family: var(--font-heading);
    color: rgba(255,255,255,0.9);
}

.welcome-divider {
    width: 60px;
    height: 3px;
    background: var(--primary-light);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.welcome-content p {
    font-size: 1.08rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.85;
}

.welcome-content p + p {
    margin-top: 1.2rem;
}

.owner-credit {
    margin-top: 2rem;
    font-size: .9rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: .05em;
}

/* ── INFO SECTION ────────────────────────────────────────── */
.info-section {
    background: var(--bg-alt);
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.info-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.3rem;
    color: var(--primary);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: .75rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: .95rem;
}

.info-card a {
    font-weight: 700;
}

.info-card .btn {
    margin-top: 1.25rem;
}

.hours-table {
    display: inline-block;
    text-align: left;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 4px 0;
    border-bottom: 1px solid rgba(0,0,0,.05);
    font-size: .95rem;
    color: var(--text-light);
}

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

.hours-row .day { font-weight: 600; color: var(--text); min-width: 110px; }
.hours-row .closed { color: var(--primary); font-weight: 700; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
    background: var(--primary);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: .75rem;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── MENU PAGE ───────────────────────────────────────────── */
.menu-page {
    padding: 50px 0 60px;
    background: var(--bg);
}

.menu-switch {
    text-align: center;
    margin-bottom: 2rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 2rem;
}

.menu-tab {
    padding: .65rem 1.75rem;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    background: transparent;
    color: var(--accent);
    font-family: var(--heading);
    font-weight: 700;
    font-size: .95rem;
    cursor: pointer;
    transition: background .25s, color .25s;
}

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

.menu-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.menu-images img {
    width: 100%;
    max-width: 750px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
}

.menu-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    font-weight: 700;
    font-size: .9rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
    background: var(--dark);
    padding: 50px 0 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 30px;
    margin: 0 auto;
    opacity: .8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    transition: transform var(--transition), opacity var(--transition);
}

.social-links a:hover { transform: translateY(-2px); opacity: .85; }
.social-links .facebook { background: #3b5998; }
.social-links .instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-links .yelp { background: #d32323; }

.footer-links {
    margin-bottom: 1.25rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    padding: 0 10px;
    transition: color var(--transition);
}

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

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto 1.25rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}

.footer-copyright a {
    color: rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-copyright a:hover { color: rgba(255,255,255,0.8); }

.footer-copyright img {
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    opacity: .5;
}

/* ── RESERVATIONS PAGE ───────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
}

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

.page-hero h1 {
    font-family: var(--font-body);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: .75rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
}

.res-form-section {
    padding: 60px 0;
    background: var(--bg);
}

.res-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.res-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.res-form-header {
    margin-bottom: 1.5rem;
}

.res-form-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: .4rem;
}

.res-form-header p {
    color: var(--text-light);
    font-size: .95rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

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

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .4rem;
    letter-spacing: .02em;
}

.form-group .required {
    color: #c0392b;
}

.form-group .optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: .8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(148,89,0,0.1);
}

.form-group textarea {
    resize: vertical;
}

.res-submit {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.05rem;
    padding: 1rem;
}

.res-status {
    text-align: center;
    margin-top: 1rem;
    font-size: .95rem;
    font-weight: 600;
}

.res-status.success { color: #27ae60; }
.res-status.error { color: #c0392b; }

/* Sidebar */
.res-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.res-sidebar-card {
    background: var(--white);
    padding: 1.75rem;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.res-sidebar-card .res-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .75rem;
    font-size: 1.2rem;
    color: var(--primary);
}

.res-sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: .5rem;
}

.res-sidebar-card p {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.6;
    margin-bottom: .5rem;
}

.res-sidebar-card .phone-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.res-sidebar-card .hours-table {
    text-align: left;
    font-size: .85rem;
}

.res-sidebar-card .hours-row {
    padding: .3rem 0;
}

.res-sidebar-card .directions-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: .85rem;
}

/* ── PRIVACY PAGE ────────────────────────────────────────── */
.privacy-content {
    background: var(--bg-alt);
    padding: 80px 0;
}

.privacy-content .container {
    max-width: 800px;
}

.privacy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin: 2.5rem 0 1rem;
}

.privacy-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin: 1.5rem 0 .75rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--text-light);
}

.privacy-content ul {
    margin: 0 0 1rem 1.5rem;
    line-height: 1.85;
    color: var(--text-light);
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 4px 15px rgba(148,89,0,.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ── MOBILE NAV OVERLAY ──────────────────────────────────── */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 109;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: calc(var(--header-height) + 20px) 0 2rem;
        z-index: 110;
        overflow-y: auto;
        box-shadow: -5px 0 30px rgba(0,0,0,.1);
        transition: right .35s cubic-bezier(.4,0,.2,1);
    }

    .nav-menu.active { right: 0; }

    .nav-menu li a {
        color: var(--dark) !important;
        line-height: 1.4 !important;
        padding: 14px 28px !important;
        font-size: 15px !important;
        text-transform: none !important;
        border-bottom: 1px solid rgba(0,0,0,.04);
    }

    .nav-menu li a:hover {
        color: var(--primary) !important;
        background: var(--bg-alt) !important;
    }

    .nav-phone {
        padding: 10px 28px;
    }

    .nav-phone a {
        display: block;
        text-align: center;
        margin-left: 0 !important;
        border-color: var(--primary) !important;
        color: var(--primary) !important;
    }

    .has-dropdown .dropdown {
        position: static !important;
        box-shadow: none !important;
        display: none !important;
        background: var(--bg-alt) !important;
        border-radius: 0 !important;
        transform: none !important;
        animation: none !important;
        padding: 0 !important;
        opacity: 1 !important;
    }

    .has-dropdown.open .dropdown {
        display: block !important;
    }

    .dropdown li a {
        padding: 14px 24px 14px 44px !important;
        font-size: 14px !important;
    }

    .hero-logo { max-width: 360px; }
    .hero-tagline { font-size: .9rem; }

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

    .gallery-grid .gallery-item:nth-child(3) {
        grid-column: 1 / -1;
    }

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

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .welcome-content h2 { font-size: 2.2rem; }

    .res-layout {
        grid-template-columns: 1fr;
    }

    .res-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .res-sidebar-card {
        flex: 1;
        min-width: 200px;
    }

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

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

@media (max-width: 600px) {
    body { font-size: 16px; }
    :root { --header-height: 70px; }
    .container { padding: 0 1.25rem; }
    .logo img { height: 38px; }
    .hero-logo { max-width: 280px; }
    .hero-tagline { font-size: .8rem; letter-spacing: .1em; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .welcome-content h2 { font-size: 1.8rem; }
    .welcome-content p { font-size: .95rem; }
    .page-hero h1 { font-size: 2.4rem; }
    .page-hero { padding: 140px 0 60px; min-height: 350px; }
    .btn { font-size: 14px; padding: 14px 28px; }
    .btn-lg { padding: 16px 32px; font-size: 15px; }
    .section-title { font-size: 1.7rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid .gallery-item:nth-child(3) { grid-column: auto; }
    .highlights-grid { grid-template-columns: 1fr 1fr; }
    .form-row-3 { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .res-form-wrapper { padding: 1.75rem; }
    .res-sidebar { flex-direction: column; }
    .res-sidebar-card { min-width: auto; }
    .highlight-card h4 { padding: 1rem .75rem 0; }
    .highlight-card p { padding: 0 .75rem 1rem; }
    .cta-section h2 { font-size: 1.5rem; }
    .gallery-section, .highlights-section, .info-section { padding: 50px 0; }
    .welcome-section { padding: 60px 0; }
    .welcome-content { padding: 2rem 1.5rem; }
    .hours-row { gap: 1rem; }
    .hours-row .day { min-width: 80px; }
    .form-group input,
    .form-group select,
    .form-group textarea { padding: .875rem 1rem; font-size: 1rem; }
    .footer-copyright { font-size: 12px; line-height: 1.6; }
    .footer-copyright a { display: block; margin-top: .5rem; }
    .cta-section { padding: 40px 0; }
}

@media (max-width: 400px) {
    .highlights-grid { grid-template-columns: 1fr; }
}
