/* ========================================
   CSS Custom Properties
======================================== */
:root {
    --color-teal-400: #2dd4bf;
    --color-teal-500: #14b8a6;
    --color-teal-600: #0d9488;
    --color-teal-700: #0f766e;
    --color-teal-800: #115e59;
    --color-teal-900: #134e4a;
    
    --color-slate-50: #f8fafc;
    --color-slate-100: #f1f5f9;
    --color-slate-200: #e2e8f0;
    --color-slate-300: #cbd5e1;
    --color-slate-400: #94a3b8;
    --color-slate-500: #64748b;
    --color-slate-600: #475569;
    --color-slate-700: #334155;
    --color-slate-800: #1e293b;
    --color-slate-900: #0f172a;
    
    --color-accent-warm: #f97316;
    --color-accent-warm-light: #ffedd5;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.15);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.2);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-slate-800);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* ========================================
   Typography
======================================== */
.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-teal-600);
    background: var(--color-teal-400);
    padding: 0.35em 0.9em;
    border-radius: 50px;
    margin-bottom: var(--space-md);
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-teal-200);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--color-slate-900);
    margin-bottom: var(--space-lg);
}

.section-title-light {
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-slate-500);
    max-width: 560px;
    line-height: 1.7;
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-teal-600);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
    background: var(--color-teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
    background: var(--color-slate-800);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--color-slate-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background: #ffffff;
    color: var(--color-teal-800);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--color-slate-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--color-slate-900);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.btn-dark:hover {
    background: var(--color-slate-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--color-slate-900);
}

.nav-logo-icon {
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-slate-600);
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-teal-500);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-teal-700);
}

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

.nav-cta-btn {
    background: var(--color-teal-600);
    color: #ffffff !important;
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
}

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

.nav-cta-btn:hover {
    background: var(--color-teal-700);
    color: #ffffff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-slate-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-slate-900) 0%, var(--color-teal-900) 50%, var(--color-teal-800) 100%);
    overflow: hidden;
    padding: 100px var(--space-lg) 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-teal-400);
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-warm);
    bottom: -100px;
    left: 10%;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--color-teal-400);
    top: 40%;
    left: 35%;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-teal-200);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-teal-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: 0.03em;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: var(--space-xl);
}

.hero-headline br {
    display: none;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--color-slate-300);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2xl);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-size: 1.5rem;
}

.hero-stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-slate-400);
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 520px;
}

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

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-slate-900);
    width: 200px;
}

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

.hero-floating-badge {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--color-accent-warm);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

/* ========================================
   Menu Section
======================================== */
.menu {
    position: relative;
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-slate-50);
    overflow: hidden;
}

.menu-bg-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--color-teal-50);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.menu-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--color-slate-100);
}

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

.menu-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.menu-card-image 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-image img {
    transform: scale(1.08);
}

.menu-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-teal-600);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3em 0.7em;
    border-radius: 50px;
}

.menu-card-content {
    padding: var(--space-lg);
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    color: var(--color-slate-900);
    margin-bottom: 0.5rem;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--color-slate-500);
    line-height: 1.65;
}

.menu-note {
    text-align: center;
    background: var(--color-teal-50);
    border: 1px dashed var(--color-teal-300);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    font-size: 0.95rem;
    color: var(--color-teal-800);
}

/* ========================================
   About Section
======================================== */
.about {
    padding: var(--space-4xl) var(--space-lg);
    background: #ffffff;
    overflow: hidden;
}

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

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
    width: 220px;
}

.about-img-secondary img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.about-geometric {
    position: absolute;
    border-radius: var(--radius-md);
}

.about-geometric.accent-teal {
    width: 120px;
    height: 120px;
    background: var(--color-teal-500);
    top: -20px;
    left: -20px;
    transform: rotate(15deg);
    opacity: 0.6;
}

.about-geometric.accent-slate {
    width: 80px;
    height: 80px;
    background: var(--color-slate-800);
    bottom: 60px;
    right: -10px;
    transform: rotate(-10deg);
    opacity: 0.15;
    border-radius: 50%;
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-slate-600);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

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

.about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-teal-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal-700);
}

.about-value-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    color: var(--color-slate-900);
    margin-bottom: 0.25rem;
}

.about-value-desc {
    font-size: 0.9rem;
    color: var(--color-slate-500);
    line-height: 1.6;
}

/* ========================================
   CTA Banner
======================================== */
.cta-banner {
    position: relative;
    padding: var(--space-4xl) var(--space-lg);
    background: linear-gradient(135deg, var(--color-teal-700), var(--color-teal-900));
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--color-teal-400);
    top: -200px;
    right: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--color-accent-warm);
    bottom: -100px;
    left: 5%;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: 0.03em;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: var(--space-lg);
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--color-teal-200);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

/* ========================================
   Location Section
======================================== */
.location {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-slate-50);
}

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

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

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    align-content: start;
}

.location-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-slate-100);
    transition: all 0.3s ease;
}

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

.location-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-teal-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-teal-700);
}

.location-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    color: var(--color-slate-900);
    margin-bottom: 0.25rem;
}

.location-card-text {
    font-size: 0.875rem;
    color: var(--color-slate-500);
    line-height: 1.6;
}

.location-card-text a {
    color: var(--color-teal-600);
    transition: color 0.2s ease;
}

.location-card-text a:hover {
    color: var(--color-teal-800);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    position: relative;
    padding: var(--space-4xl) var(--space-lg);
    background: var(--color-slate-900);
    overflow: hidden;
}

.contact-bg-teal {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--color-teal-800);
    clip-path: polygon(0 0, 85% 0, 60% 100%, 0% 100%);
    pointer-events: none;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.contact-info {
    color: #ffffff;
}

.contact-info-text {
    font-size: 1.05rem;
    color: var(--color-slate-300);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 440px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-direct-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-direct-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.contact-direct-icon {
    font-size: 1.3rem;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    backdrop-filter: blur(12px);
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-slate-300);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--color-slate-500);
}

.form-input:focus {
    border-color: var(--color-teal-400);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.15);
}

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

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--space-2xl);
    color: #ffffff;
}

.form-success svg {
    color: var(--color-teal-400);
    margin-bottom: var(--space-md);
}

.form-success-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.03em;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--color-slate-400);
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--color-slate-900);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-3xl) var(--space-lg) var(--space-xl);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    font-size: 1.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--color-slate-400);
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links li a,
.footer-contact li a,
.footer-contact li {
    font-size: 0.9rem;
    color: var(--color-slate-400);
    transition: color 0.2s ease;
}

.footer-links li a:hover,
.footer-contact li a:hover {
    color: var(--color-teal-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-slate-500);
}

/* ========================================
   Scroll Reveal (progressive enhancement)
======================================== */
@media (prefers-reduced-motion: no-preference) {
    [data-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);
    }
    
    [data-reveal].revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }
    
    .hero-description {
        margin: 0 auto var(--space-xl);
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-image-main img {
        height: 500px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-bg-teal {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-md);
        border-bottom: 1px solid var(--color-slate-100);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero {
        padding: 100px var(--space-lg) 80px;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-headline br {
        display: inline;
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .hero-floating-badge {
        right: 10px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .location-info {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
