/* ============================================
   COFFEE SQUAD — Styles
   Bold editorial · Forest Green & Off-White
   ============================================ */

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

:root {
    --green-deep: #1B4332;
    --green-mid: #2D6A4F;
    --green-light: #40916C;
    --green-pale: #52B788;
    --cream: #F5F0E8;
    --cream-light: #FAF7F2;
    --cream-dark: #E8E0D0;
    --warm-white: #FFFDF9;
    --brown: #8B6F4E;
    --brown-light: #C4A882;
    --text-dark: #1A1A1A;
    --text-mid: #3D3D3D;
    --text-light: #6B6B6B;
    --text-muted: #999;

    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ---------- HEADER ---------- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

#main-header.scrolled {
    background: rgba(245, 240, 232, 0.97);
    box-shadow: 0 1px 20px rgba(27, 67, 50, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-deep);
    letter-spacing: -0.02em;
}

.logo-icon {
    color: var(--green-deep);
}

.logo-light {
    color: var(--cream);
}

.logo-light .logo-icon {
    color: var(--cream);
}

/* Nav */
#main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.01em;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green-mid);
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--green-deep);
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--green-deep);
    color: var(--cream) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--green-deep);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(27, 67, 50, 0.08);
}

.nav-toggle svg {
    transition: var(--transition);
}

.nav-toggle.active svg {
    transform: rotate(90deg);
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(45, 106, 79, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-2xl) 0;
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: var(--space-lg);
}

.eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 1.5px;
    background: var(--green-mid);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--green-deep);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
}

.hero-headline br {
    display: none;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--green-deep);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 67, 50, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--green-deep);
    border: 1.5px solid rgba(27, 67, 50, 0.3);
}

.btn-secondary:hover {
    border-color: var(--green-deep);
    background: rgba(27, 67, 50, 0.05);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.hero-detail svg {
    color: var(--green-mid);
    flex-shrink: 0;
}

/* Hero images */
.hero-image-wrap {
    position: relative;
    height: 780px;
}

.hero-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(27, 67, 50, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover img {
    transform: scale(1.03);
}

.hero-image--main {
    top: 0;
    right: 0;
    width: 420px;
    height: 560px;
}

.hero-image--secondary {
    bottom: 0;
    left: 0;
    width: 280px;
    height: 280px;
    border: 6px solid var(--cream);
    box-shadow: 0 15px 50px rgba(27, 67, 50, 0.12);
}

.hero-accent {
    position: absolute;
    bottom: 260px;
    right: -20px;
    color: var(--green-pale);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

/* ---------- MARQUEE ---------- */
.marquee-strip {
    background: var(--green-deep);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.7);
}

.marquee-track svg {
    color: var(--green-pale);
    opacity: 0.6;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- SECTION COMMON ---------- */
.section-header {
    margin-bottom: var(--space-2xl);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--green-deep);
    letter-spacing: -0.025em;
}

/* ---------- MENU ---------- */
.menu-section {
    padding: var(--space-3xl) 0;
    background: var(--cream-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.menu-category {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(27, 67, 50, 0.07);
    transition: var(--transition);
}

.menu-category:hover {
    box-shadow: 0 15px 50px rgba(27, 67, 50, 0.08);
    transform: translateY(-4px);
}

.category-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-deep);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

.category-label svg {
    color: var(--green-mid);
}

.menu-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.menu-items li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-sm) 0;
    border-bottom: 1px dashed rgba(27, 67, 50, 0.08);
}

.menu-items li:last-child {
    border-bottom: none;
}

.item-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.item-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* ---------- ABOUT ---------- */
.about-section {
    padding: var(--space-3xl) 0;
    background: var(--green-deep);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.about-image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.about-image-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--green-deep);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.about-image-small img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.about-eyebrow {
    color: var(--green-pale) !important;
}

.about-eyebrow .eyebrow-line {
    background: var(--green-pale) !important;
}

.about-title {
    color: var(--cream) !important;
    margin-bottom: var(--space-lg);
}

.about-body {
    margin-bottom: var(--space-xl);
}

.about-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.75);
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 240, 232, 0.5);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(245, 240, 232, 0.15);
}

/* ---------- GALLERY ---------- */
.gallery-section {
    padding: var(--space-3xl) 0;
    background: var(--cream-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 600;
}

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    height: 100%;
    min-height: 500px;
}

.gallery-item--tall img {
    height: 100%;
}

.gallery-item:not(.gallery-item--tall) {
    height: 240px;
}

.gallery-item--wide {
    grid-column: 6 / 13;
    height: 240px;
}

.gallery-item--wide img {
    height: 100%;
}

/* ---------- VISIT ---------- */
.visit-section {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit-title {
    margin-bottom: var(--space-xl);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.visit-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-mid);
    flex-shrink: 0;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-value a {
    color: var(--green-mid);
    transition: var(--transition);
}

.detail-value a:hover {
    color: var(--green-deep);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    box-shadow: 0 20px 60px rgba(27, 67, 50, 0.1);
}

/* ---------- CONTACT ---------- */
.contact-section {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.contact-title {
    margin-bottom: var(--space-md);
}

.contact-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-form {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid rgba(27, 67, 50, 0.07);
    box-shadow: 0 10px 40px rgba(27, 67, 50, 0.06);
}

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

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(27, 67, 50, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-light);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-mid);
    background: var(--warm-white);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: var(--space-sm);
}

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(45, 106, 79, 0.08);
    border-radius: var(--radius-sm);
    margin-top: var(--space-md);
    font-size: 0.95rem;
    color: var(--green-deep);
    font-weight: 500;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    color: var(--green-mid);
    flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
#footer {
    background: var(--green-deep);
    color: var(--cream);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-brand p {
    margin-top: var(--space-md);
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--cream);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    transition: var(--transition);
}

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

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: var(--space-sm);
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
}

.footer-contact a {
    color: var(--green-pale);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--cream);
}

.footer-hours p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
}

.hours-closed {
    color: rgba(245, 240, 232, 0.35) !important;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: var(--space-lg);
    }

    .hero-image--main {
        width: 340px;
        height: 480px;
    }

    .hero-image--secondary {
        width: 220px;
        height: 220px;
    }

    .hero-image-wrap {
        height: 560px;
    }

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

    .menu-category:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-small {
        right: -20px;
        bottom: -20px;
    }

    .about-image-small img {
        width: 280px;
        height: 210px;
    }

    .gallery-item--tall {
        grid-column: 1 / 7;
        min-height: 400px;
    }

    .gallery-item--wide {
        grid-column: 7 / 13;
    }
}

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

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

    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(245, 240, 232, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-sm);
        border-bottom: 1px solid rgba(27, 67, 50, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-list a {
        font-size: 1.1rem;
        padding: 12px 0;
    }

    .nav-cta {
        text-align: center;
        display: block;
        margin-top: var(--space-sm);
    }

    /* Hero mobile */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-xl);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: var(--space-lg) 0;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-headline br {
        display: block;
    }

    .hero-image-wrap {
        order: 1;
        height: 360px;
        margin-bottom: var(--space-lg);
    }

    .hero-image--main {
        width: 100%;
        height: 300px;
    }

    .hero-image--secondary {
        display: none;
    }

    .hero-accent {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    /* Marquee */
    .marquee-strip {
        padding: 14px 0;
    }

    /* Menu mobile */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-category:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    /* About mobile */
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-main img {
        height: 400px;
    }

    .about-image-small {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-md);
    }

    .about-image-small img {
        width: 100%;
        height: 220px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }

    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
    }

    .gallery-item:not(.gallery-item--tall) {
        height: 200px;
    }

    /* Visit mobile */
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .visit-map {
        height: 300px;
    }

    /* Contact mobile */
    .contact-inner {
        grid-template-columns: 1fr;
    }

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

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .header-inner {
        height: 70px;
    }

    .hero-image-wrap {
        height: 280px;
    }

    .hero-image--main {
        height: 240px;
    }

    .menu-category {
        padding: var(--space-md);
    }

    .contact-form {
        padding: var(--space-md);
    }

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

    .footer-contact,
    .footer-hours {
        grid-column: auto;
    }
}
