/* ============================================
   Snyder's Dairy Bar — Editorial Style Sheet
   Teal + Slate Grey · Lora + Inter
   ============================================ */

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

:root {
    --teal-900: #0a5c5f;
    --teal-800: #0D7377;
    --teal-700: #118a8e;
    --teal-600: #14a0a5;
    --teal-500: #1bb8be;
    --teal-100: #d0efef;
    --teal-50:  #eaf8f8;

    --slate-950: #0b1115;
    --slate-900: #111820;
    --slate-800: #1a2332;
    --slate-700: #2a3444;
    --slate-600: #3d4f65;
    --slate-500: #5a6f85;
    --slate-400: #7f95aa;
    --slate-300: #a8b8c8;
    --slate-200: #c8d4e0;
    --slate-100: #e2eaf2;
    --slate-50:  #f0f4f8;

    --cream: #faf9f6;
    --cream-dark: #f3f0ea;
    --white: #ffffff;

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

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out);
    --transition-med: 0.4s var(--ease-out);
    --transition-slow: 0.7s var(--ease-out);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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);
    color: var(--slate-800);
    line-height: 1.65;
    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;
}

address {
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- LOADER ---------- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--slate-950);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    gap: 6px;
    align-items: center;
}

.loader-letter {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-500);
    opacity: 0;
    animation: loaderReveal 0.6s var(--ease-out) forwards;
}

.loader-letter:nth-child(1) { animation-delay: 0.05s; }
.loader-letter:nth-child(2) { animation-delay: 0.12s; }
.loader-letter:nth-child(3) { animation-delay: 0.19s; }
.loader-letter:nth-child(4) { animation-delay: 0.26s; }
.loader-letter:nth-child(5) { animation-delay: 0.33s; }
.loader-letter:nth-child(6) { animation-delay: 0.40s; }
.loader-letter:nth-child(7) { animation-delay: 0.47s; }

@keyframes loaderReveal {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.site-header.scrolled {
    border-bottom-color: var(--slate-200);
    background: rgba(250, 249, 246, 0.95);
    box-shadow: 0 1px 20px rgba(11, 17, 21, 0.06);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--teal-800);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-fast), background var(--transition-fast);
}

.logo:hover .logo-mark {
    transform: rotate(-6deg) scale(1.05);
    background: var(--teal-700);
}

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

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--slate-500);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.logo--footer .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 1.15rem;
}

.logo--footer .logo-name {
    font-size: 0.95rem;
}

/* ---------- NAV ---------- */
.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--teal-800);
    background: var(--teal-50);
}

.nav-cta {
    background: var(--teal-800);
    color: var(--white) !important;
    margin-left: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

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

/* ---------- NAV TOGGLE ---------- */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    z-index: 1001;
}

.nav-toggle:hover {
    background: var(--slate-100);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    position: relative;
    transition: background var(--transition-fast), transform var(--transition-med);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--slate-700);
    left: 0;
    transition: transform var(--transition-med), top var(--transition-fast);
}

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

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

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

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

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 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(13, 115, 119, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-800);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--teal-800);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--slate-950);
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}

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

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--slate-600);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-800);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(13, 115, 119, 0.25);
}

.btn-primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-300);
}

.btn-ghost:hover {
    border-color: var(--teal-800);
    color: var(--teal-800);
    background: var(--teal-50);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.875rem;
    color: var(--slate-600);
    font-weight: 500;
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--teal-800);
    flex-shrink: 0;
}

/* Hero Images */
.hero-image-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(11, 17, 21, 0.15);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s var(--ease-out);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(11, 17, 21, 0.18);
    border: 4px solid var(--cream);
}

.hero-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--slate-900);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    width: fit-content;
    margin-top: 16px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--teal-500);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-400);
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg {
    width: 16px;
    height: 16px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- SECTION SHARED ---------- */
.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal-800);
    margin-bottom: 16px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--slate-950);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.section-heading em {
    font-style: italic;
    color: var(--teal-800);
}

/* ---------- ABOUT ---------- */
.about {
    padding: 120px 24px;
    background: var(--white);
}

.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 20px 56px rgba(11, 17, 21, 0.12);
}

.about-stat-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--teal-800);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 12px 32px rgba(13, 115, 119, 0.3);
}

.about-stat-card .stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 4px;
}

.about-stat-card .stat-label {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-content-col {
    padding: 20px 0;
}

.about-content-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 20px;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--slate-200);
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
}

.about-signature svg {
    width: 20px;
    height: 20px;
    color: var(--teal-800);
    flex-shrink: 0;
}

/* ---------- MENU ---------- */
.menu {
    padding: 120px 24px;
    background: var(--cream);
}

.menu-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.menu-intro {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--slate-600);
}

.menu-categories {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.menu-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--slate-100);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal-800);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-med);
}

.menu-category:hover {
    border-color: var(--teal-100);
    box-shadow: 0 16px 48px rgba(13, 115, 119, 0.08);
    transform: translateY(-4px);
}

.menu-category:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background var(--transition-fast);
}

.menu-category:hover .category-icon {
    background: var(--teal-800);
}

.category-icon svg {
    width: 24px;
    height: 24px;
    color: var(--teal-800);
    transition: color var(--transition-fast);
}

.menu-category:hover .category-icon svg {
    color: var(--white);
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--slate-950);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.category-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 24px;
}

.category-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    font-size: 0.875rem;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--slate-100);
}

.category-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.category-list li span:first-child {
    font-weight: 600;
    color: var(--slate-800);
}

.category-list li span:last-child {
    color: var(--slate-400);
    font-size: 0.8rem;
    text-align: right;
    flex-shrink: 0;
}

.menu-note {
    max-width: 1280px;
    margin: 48px auto 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    color: var(--teal-900);
    font-weight: 500;
}

.menu-note svg {
    width: 20px;
    height: 20px;
    color: var(--teal-800);
    flex-shrink: 0;
}

/* ---------- EXPERIENCE ---------- */
.experience {
    padding: 120px 24px;
    background: var(--slate-900);
    color: var(--white);
}

.experience-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.experience .section-eyebrow {
    color: var(--teal-500);
}

.experience .section-heading {
    color: var(--white);
}

.experience-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.exp-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--slate-800);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.exp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.exp-card-image {
    overflow: hidden;
    aspect-ratio: 5/3.8;
}

.exp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s var(--ease-out);
    filter: brightness(0.9) saturate(1.1);
}

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

.exp-card-content {
    padding: 32px;
}

.exp-card-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--teal-800);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.6;
}

.exp-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.exp-card-title em {
    font-style: italic;
    color: var(--teal-500);
}

.exp-card-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--slate-400);
}

/* ---------- VISIT ---------- */
.visit {
    padding: 120px 24px;
    background: var(--cream);
}

.visit-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.visit-info {
    padding: 20px 0;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 40px 0;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.visit-detail svg {
    width: 24px;
    height: 24px;
    color: var(--teal-800);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail strong {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 6px;
}

.visit-detail span,
.visit-detail a {
    font-size: 1.05rem;
    color: var(--slate-700);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--teal-800);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.visit-detail a:hover {
    color: var(--teal-600);
    text-decoration: underline;
}

.visit-cta {
    margin-top: 12px;
}

/* Map */
.visit-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 480px;
    background: var(--slate-200);
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, var(--slate-100) 0%, var(--slate-200) 50%, var(--slate-300) 100%);
}

.map-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.3) 40px,
        rgba(255,255,255,0.3) 41px
    ),
    repeating-linear-gradient(
        90deg,
        transparent,
        transparent 40px,
        rgba(255,255,255,0.3) 40px,
        rgba(255,255,255,0.3) 41px
    );
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(11, 17, 21, 0.4);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.map-overlay svg {
    width: 48px;
    height: 48px;
    color: var(--teal-500);
}

.map-overlay p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
}

.map-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: var(--teal-800);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.map-accent svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: 80px 24px 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--slate-500);
}

.footer-tagline em {
    font-style: italic;
    color: var(--teal-500);
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav strong,
.footer-contact strong {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate-300);
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.9rem;
    color: var(--slate-500);
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--teal-500);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 0;
    border-top: 1px solid var(--slate-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--slate-600);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--teal-800);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(13, 115, 119, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition-fast);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--teal-700);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.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: 40px;
    }

    .about-grid {
        gap: 48px;
    }

    .menu-categories {
        gap: 24px;
    }

    .experience-grid {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-image-wrap {
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-image-accent {
        left: -20px;
        bottom: -20px;
        width: 200px;
    }

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

    .about-image-col {
        max-width: 520px;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .visit-map {
        min-height: 360px;
    }

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

@media (max-width: 768px) {
    .nav {
        position: fixed;
        inset: 0;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--transition-med), visibility var(--transition-med);
        z-index: 1000;
    }

    .nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 8px;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 14px 24px;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 100px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.25rem);
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .about-stat-card {
        right: 16px;
        bottom: -16px;
        padding: 18px 24px;
    }

    .about-stat-card .stat-label {
        font-size: 1.2rem;
    }

    .about {
        padding: 80px 24px;
    }

    .menu {
        padding: 80px 24px;
    }

    .menu-category {
        padding: 28px 24px;
    }

    .experience {
        padding: 80px 24px;
    }

    .visit {
        padding: 80px 24px;
    }

    .footer {
        padding: 60px 24px 0;
    }

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

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}

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

    .header-inner {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 16px 80px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 14px;
    }

    .section-heading {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }
}
