/* ============================================================
   Bowman's BBQ & Meat Market — Styles
   Palette: Charcoal (#2D2D2D) + Coral (#C85A3C) + Warm cream
   Fonts: Playfair Display (serif) + Inter (sans-serif)
============================================================ */

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

:root {
    --color-charcoal: #2D2D2D;
    --color-charcoal-light: #3D3D3D;
    --color-charcoal-dark: #1E1E1E;
    --color-coral: #C85A3C;
    --color-coral-dark: #A84830;
    --color-coral-light: #E8785A;
    --color-cream: #F7F3EF;
    --color-cream-dark: #EDE8E2;
    --color-warm-gray: #8A8278;
    --color-white: #FFFFFF;
    --color-text: #2D2D2D;
    --color-text-light: #5A5550;
    --color-text-on-dark: #F7F3EF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(45,45,45,0.08);
    --shadow-md: 0 4px 20px rgba(45,45,45,0.10);
    --shadow-lg: 0 8px 40px rgba(45,45,45,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-coral-dark);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 45, 45, 0.06);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-charcoal);
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-coral);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 10px 16px;
    border-color: transparent transparent var(--color-cream) transparent;
    opacity: 0.9;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-warm-gray);
    font-weight: 500;
}

/* Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-charcoal);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--color-charcoal);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-charcoal);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.nav-link:hover {
    color: var(--color-coral);
    background: rgba(200, 90, 60, 0.06);
}

.nav-cta {
    background: var(--color-coral);
    color: var(--color-white) !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--color-coral-dark);
    color: var(--color-white) !important;
}

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-charcoal-dark);
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 90, 60, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 90, 60, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-coral-light);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 600;
    color: var(--color-cream);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--color-coral-light);
}

.hero-headline .coral-accent {
    color: var(--color-coral);
}

.hero-desc {
    font-size: 1.0625rem;
    color: rgba(247, 243, 239, 0.72);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-coral-dark);
    border-color: var(--color-coral-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 90, 60, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--color-cream);
    border-color: rgba(247, 243, 239, 0.3);
}

.btn-ghost:hover {
    border-color: var(--color-coral-light);
    color: var(--color-coral-light);
    transform: translateY(-1px);
}

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

.btn-light:hover {
    background: var(--color-cream);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
}

.btn-full {
    width: 100%;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: rgba(247, 243, 239, 0.55);
    border: 1px solid rgba(247, 243, 239, 0.15);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 640 / 800;
}

.hero-img-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 40%;
    background: var(--color-coral);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.25;
}

.hero-floating-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.floating-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-warm-gray);
    font-weight: 600;
}

.floating-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 60px;
}

/* ---------- INTRO STRIP ---------- */
.intro-strip {
    background: var(--color-cream);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(45, 45, 45, 0.06);
}

.intro-text {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-charcoal);
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto;
}

.intro-accent {
    color: var(--color-coral);
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

/* ---------- SECTION COMMON ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
}

.section-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-coral);
    font-weight: 600;
    margin-bottom: 0.875rem;
}

.section-eyebrow.light {
    color: var(--color-coral-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

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

.section-desc {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ---------- MENU SECTION ---------- */
.menu-section {
    background: var(--color-cream);
    padding: 5rem 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.menu-card-img {
    overflow: hidden;
    aspect-ratio: 400 / 280;
}

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

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.menu-card-tag {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-coral);
    background: rgba(200, 90, 60, 0.08);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    white-space: nowrap;
}

.menu-card-desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.menu-note {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(200, 90, 60, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(200, 90, 60, 0.1);
}

.menu-note p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.menu-note strong {
    color: var(--color-charcoal);
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560 / 640;
}

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 560 / 360;
}

.about-img-accent-bar {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 80px;
    height: 80px;
    background: var(--color-coral);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    padding: 1rem 0;
}

.about-body {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(45, 45, 45, 0.08);
}

.stat {
    flex: 1;
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-warm-gray);
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.stat-divider {
    width: 1px;
    background: rgba(45, 45, 45, 0.1);
    align-self: stretch;
}

/* ---------- MARKET SECTION ---------- */
.market-section {
    background: var(--color-charcoal);
    padding: 5rem 0;
}

.market-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.market-content {
    order: 1;
}

.market-desc {
    font-size: 1.0625rem;
    color: rgba(247, 243, 239, 0.7);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.market-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

.market-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 1rem;
    color: rgba(247, 243, 239, 0.85);
    line-height: 1.6;
}

.market-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(200, 90, 60, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral-light);
    margin-top: 2px;
}

.market-image {
    order: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.market-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600 / 700;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    background: var(--color-cream-dark);
    padding: 5rem 0;
}

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

.testimonial {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition);
}

.testimonial:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--color-coral);
    opacity: 0.2;
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.testimonial-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.testimonial-location {
    font-size: 0.8125rem;
    color: var(--color-warm-gray);
}

/* ---------- VISIT SECTION ---------- */
.visit-section {
    background: var(--color-white);
    padding: 5rem 0;
}

.visit-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-content {
    padding: 1rem 0;
}

.visit-desc {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-detail {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.5rem 1.5rem;
}

.visit-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--color-warm-gray);
    padding-top: 0.25rem;
}

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

.visit-detail-value a {
    color: var(--color-coral);
}

.visit-detail-value a:hover {
    color: var(--color-coral-dark);
    text-decoration: underline;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    background: var(--color-charcoal);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--color-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.map-icon {
    color: var(--color-coral-light);
    opacity: 0.8;
}

.map-label {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-cream);
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    background: var(--color-cream);
    padding: 5rem 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding: 1rem 0;
}

.contact-desc {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-charcoal);
    text-decoration: none;
    font-size: 1rem;
    transition: color var(--transition);
}

.contact-method:hover {
    color: var(--color-coral);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 1.75rem;
}

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

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    background: var(--color-cream);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-coral);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(200, 90, 60, 0.1);
}

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

.form-note {
    font-size: 0.8125rem;
    color: var(--color-warm-gray);
    text-align: center;
    margin-top: 1rem;
}

/* Success State */
.form-success {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 90, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

.form-success p {
    font-size: 1rem;
    color: var(--color-text-light);
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--color-charcoal-dark);
    color: var(--color-cream);
    padding: 4rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--color-cream);
}

.footer-logo .logo-mark {
    width: 32px;
    height: 32px;
}

.footer-logo .logo-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
}

.footer-logo .logo-tagline {
    font-size: 0.5625rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(247, 243, 239, 0.55);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(247, 243, 239, 0.55);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(247, 243, 239, 0.55);
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(247, 243, 239, 0.55);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(247, 243, 239, 0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(247, 243, 239, 0.35);
}

.footer-bottom a {
    color: rgba(247, 243, 239, 0.35);
}

.footer-bottom a:hover {
    color: var(--color-coral-light);
}

/* ---------- SCROLL REVEAL (below-fold only) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    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; }

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        /* Progressive enhancement — JS adds .revealed */
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-split {
        gap: 2rem;
    }

    .about-split,
    .market-inner,
    .visit-inner,
    .contact-inner {
        gap: 2.5rem;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5.5rem 1.5rem 2rem;
        gap: 0.25rem;
        box-shadow: -8px 0 30px rgba(0,0,0,0.15);
        transition: right var(--transition);
        z-index: 1000;
    }

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

    .nav-link {
        width: 100%;
        padding: 0.75rem 0.875rem;
        font-size: 1rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        text-align: center;
        width: 100%;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero mobile */
    .hero {
        padding-top: 5rem;
        min-height: auto;
    }

    .hero-split {
        grid-template-columns: 1fr;
        padding-bottom: 3rem;
    }

    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-floating-card {
        left: 0;
        bottom: 1rem;
    }

    .hero-wave svg {
        height: 40px;
    }

    /* Sections mobile */
    .about-split,
    .market-inner,
    .visit-inner,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .market-content { order: 1; }
    .market-image { order: 2; }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .about-img-accent-bar {
        display: none;
    }

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

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

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

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

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

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

    .about-stats {
        flex-direction: column;
        gap: 1.25rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .visit-detail {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}
