/* ============================================
   Alpine Tap Room — Custom Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ============================================
   Navigation
   ============================================ */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 26, 20, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fefdf8;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    color: #4ade80;
}

.nav-logo:hover {
    color: #fefdf8;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(254, 253, 248, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ade80;
    transition: width 0.2s ease;
}

.nav-link:hover {
    color: #fefdf8;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #166534;
    background: #4ade80;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: #22c55e;
    transform: translateY(-1px);
    color: #0f1a14;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #fefdf8;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 26, 20, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 100px 32px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu-link {
    color: rgba(254, 253, 248, 0.85);
    font-size: 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu-link:hover {
    color: #4ade80;
    padding-left: 8px;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    color: #0f1a14;
    background: #4ade80;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.2s ease;
}

.mobile-menu-cta:hover {
    background: #22c55e;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #0f1a14;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/1259999/pexels-photo-1259999.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 26, 20, 0.92) 0%,
        rgba(22, 101, 52, 0.80) 50%,
        rgba(15, 26, 20, 0.88) 100%
    );
}

.hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #fefdf8;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-title-accent {
    color: #4ade80;
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(254, 253, 248, 0.75);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-primary {
    color: #0f1a14;
    background: #4ade80;
    box-shadow: 0 4px 16px rgba(74, 222, 128, 0.3);
}

.btn-primary:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.4);
}

.btn-secondary {
    color: #fefdf8;
    background: rgba(254, 253, 248, 0.1);
    border: 1px solid rgba(254, 253, 248, 0.25);
}

.btn-secondary:hover {
    background: rgba(254, 253, 248, 0.18);
    transform: translateY(-2px);
}

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

/* Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(254, 253, 248, 0.07);
    border: 1px solid rgba(254, 253, 248, 0.12);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateX(6px);
    background: rgba(254, 253, 248, 0.11);
}

.stat-card--1 { animation: float1 6s ease-in-out infinite; }
.stat-card--2 { animation: float2 7s ease-in-out infinite; }
.stat-card--3 { animation: float3 5.5s ease-in-out infinite; }

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

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

@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 222, 128, 0.15);
    border-radius: 12px;
    color: #4ade80;
}

.stat-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fefdf8;
    line-height: 1.2;
}

.stat-card-label {
    font-size: 0.85rem;
    color: rgba(254, 253, 248, 0.6);
    line-height: 1.4;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(254, 253, 248, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ============================================
   Features Strip
   ============================================ */
.features-strip {
    background: #fefdf8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0;
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.features-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 28px;
}

.features-item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    border-radius: 12px;
    color: #166534;
}

.features-item-title {
    font-weight: 700;
    font-size: 1rem;
    color: #0f1a14;
    margin-bottom: 4px;
}

.features-item-desc {
    font-size: 0.875rem;
    color: #525252;
    line-height: 1.5;
}

.features-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
    align-self: stretch;
}

/* ============================================
   Section Shared
   ============================================ */
.section {
    padding: 100px 24px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #166534;
    margin-bottom: 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 6px 14px;
    border-radius: 100px;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0f1a14;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #525252;
    line-height: 1.7;
}

/* ============================================
   Menu Section
   ============================================ */
.menu-section {
    background: #fefdf8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.menu-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #166534;
    color: #fefdf8;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 6px;
}

.menu-card-body {
    padding: 28px;
}

.menu-card-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #166534;
    margin-bottom: 8px;
}

.menu-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f1a14;
    margin-bottom: 12px;
    line-height: 1.25;
}

.menu-card-desc {
    font-size: 0.95rem;
    color: #525252;
    line-height: 1.65;
    margin-bottom: 16px;
}

.menu-card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #3f3f46;
}

.menu-card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: #f8faf7;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

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

.about-image-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid #f8faf7;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.about-content {
    padding: 16px 0;
}

.about-text {
    font-size: 1.05rem;
    color: #3f3f46;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2f5e8;
    border-radius: 10px;
    color: #166534;
}

.about-value-title {
    font-weight: 700;
    font-size: 1rem;
    color: #0f1a14;
    margin-bottom: 4px;
}

.about-value-desc {
    font-size: 0.9rem;
    color: #525252;
    line-height: 1.5;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background: #fefdf8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
}

/* ============================================
   Hours Section
   ============================================ */
.hours-section {
    background: #0f1a14;
}

.hours-card {
    background: rgba(254, 253, 248, 0.04);
    border: 1px solid rgba(254, 253, 248, 0.08);
    border-radius: 24px;
    overflow: hidden;
}

.hours-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hours-content {
    padding: 64px 56px;
}

.hours-content .section-tag {
    background: rgba(74, 222, 128, 0.12);
    border-color: rgba(74, 222, 128, 0.25);
    color: #4ade80;
}

.hours-content .section-title {
    color: #fefdf8;
}

.hours-content .section-subtitle {
    color: rgba(254, 253, 248, 0.6);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    margin-top: 48px;
}

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

.hours-day-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(254, 253, 248, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hours-day-time {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fefdf8;
}

.hours-day--highlight .hours-day-label,
.hours-day--highlight .hours-day-time {
    color: #4ade80;
}

/* Hours Map */
.hours-map {
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.hours-map-wrapper {
    flex: 1;
    min-height: 280px;
}

.hours-address {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px;
    background: rgba(254, 253, 248, 0.05);
    border-top: 1px solid rgba(254, 253, 248, 0.08);
}

.hours-address-icon {
    color: #4ade80;
    flex-shrink: 0;
}

.hours-address-name {
    font-weight: 700;
    color: #fefdf8;
    font-size: 0.95rem;
}

.hours-address-detail {
    font-size: 0.85rem;
    color: rgba(254, 253, 248, 0.6);
}

.hours-phone {
    position: absolute;
    top: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-weight: 600;
    font-size: 0.95rem;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 10px 18px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.hours-phone:hover {
    background: rgba(74, 222, 128, 0.18);
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: #f8faf7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-desc {
    font-size: 1.05rem;
    color: #525252;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2f5e8;
    border-radius: 12px;
    color: #166534;
}

.contact-detail-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #71717a;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 1rem;
    color: #0f1a14;
    font-weight: 500;
    line-height: 1.5;
}

.contact-link {
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #166534;
}

/* Contact Form */
.contact-form-wrap {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3f3f46;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e4e4e7;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #0f1a14;
    background: #fefdf8;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: #4ade80;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15);
}

.form-input::placeholder {
    color: #a1a1aa;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

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

.form-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: #e2f5e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #166534;
}

.form-success-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f1a14;
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 1rem;
    color: #525252;
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #0f1a14;
    padding: 72px 24px 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(254, 253, 248, 0.08);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fefdf8;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    color: #4ade80;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(254, 253, 248, 0.07);
    border-radius: 10px;
    color: rgba(254, 253, 248, 0.6);
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(254, 253, 248, 0.4);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.65);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #4ade80;
}

.footer-address {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.65);
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 12px;
}

.footer-phone {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4ade80;
    transition: color 0.2s ease;
}

.footer-phone:hover {
    color: #22c55e;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(254, 253, 248, 0.65);
}

.footer-hours li .highlight {
    color: #4ade80;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.825rem;
    color: rgba(254, 253, 248, 0.35);
}

.footer-bottom a {
    color: rgba(74, 222, 128, 0.6);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #4ade80;
}

/* ============================================
   Scroll Reveal
   ============================================ */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 200px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-accent {
        right: 16px;
        bottom: -24px;
    }
    
    .hours-card-inner {
        grid-template-columns: 1fr;
    }
    
    .hours-map {
        min-height: 360px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }
    
    .hero-grid {
        padding: 100px 24px 60px;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-card {
        animation: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-divider {
        display: none;
    }
    
    .features-item {
        padding: 24px 20px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .hours-content {
        padding: 48px 32px;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-phone {
        position: relative;
        top: auto;
        right: auto;
        margin: 16px 28px;
    }
    
    .contact-form-wrap {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 72px 20px;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--large {
        grid-column: span 1;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
}
