/* ============================================
   VICE HOOKAH LOUNGE HTX — STYLESHEET
   Plum + Amber | Clean Minimalist
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Plum palette */
    --plum-50: #faf5ff;
    --plum-100: #f3e8ff;
    --plum-200: #e9d5ff;
    --plum-300: #d8b4fe;
    --plum-400: #c084fc;
    --plum-500: #a855f7;
    --plum-600: #9333ea;
    --plum-700: #7e22ce;
    --plum-800: #6b21a8;
    --plum-900: #581c87;
    --plum-950: #3b0764;

    /* Amber palette */
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-900: #78350f;
    --amber-950: #451a03;

    /* Neutrals */
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    --neutral-950: #0a0a0a;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    color: var(--neutral-800);
    background: var(--neutral-50);
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* --- Section Common --- */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-700);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--plum-950);
    margin-bottom: var(--space-md);
}

.section-title em {
    font-style: italic;
    color: var(--plum-700);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--neutral-600);
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--plum-800);
    color: #fff;
    border: 1px solid var(--plum-800);
}

.btn-primary:hover {
    background: var(--plum-900);
    border-color: var(--plum-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--plum-800);
    border: 1px solid var(--plum-300);
}

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

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: rgba(250, 250, 250, 0.97);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    max-width: 1200px;
    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.6rem;
}

.nav-logo-mark {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--plum-800);
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--neutral-700);
}

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

.nav-links a {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-600);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber-500);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--plum-800);
}

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

.nav-cta {
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.12em !important;
    color: var(--amber-700) !important;
    border: 1px solid var(--amber-400);
    padding: 0.6rem 1.2rem;
    transition: all var(--transition-base) !important;
}

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

.nav-cta:hover {
    background: var(--amber-50);
    color: var(--amber-800) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle-bar {
    width: 22px;
    height: 1.5px;
    background: var(--neutral-700);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 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(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--neutral-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    color: var(--neutral-600);
    transition: color var(--transition-fast);
}

.mobile-menu-close:hover {
    color: var(--plum-800);
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--neutral-800);
    transition: color var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--plum-700);
}

.mobile-menu-cta {
    margin-top: var(--space-md);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-700);
    border: 1px solid var(--amber-400);
    padding: 0.8rem 2rem;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 7, 100, 0.88) 0%,
        rgba(107, 33, 168, 0.82) 40%,
        rgba(120, 53, 15, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    padding: 0 var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-300);
    margin-bottom: var(--space-lg);
}

.badge-line {
    width: 32px;
    height: 1px;
    background: var(--amber-400);
    opacity: 0.6;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: #fff;
    margin-bottom: var(--space-md);
}

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

.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto var(--space-xl);
}

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

.hero-actions .btn-primary {
    background: var(--amber-600);
    border-color: var(--amber-600);
    color: var(--neutral-950);
}

.hero-actions .btn-primary:hover {
    background: var(--amber-500);
    border-color: var(--amber-500);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.hero-actions .btn-ghost {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-actions .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 var(--space-lg);
}

.stat-card {
    flex: 1;
    max-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    border-right: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

.stat-card:first-child {
    border-radius: 0;
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--plum-800);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neutral-500);
}

/* --- Experience Section --- */
.experience {
    background: var(--neutral-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--neutral-200);
    border: 1px solid var(--neutral-200);
}

.feature-card {
    background: var(--neutral-50);
    padding: var(--space-2xl) var(--space-lg);
    transition: all var(--transition-base);
}

.feature-card:hover {
    background: var(--plum-50);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--plum-700);
    border: 1px solid var(--plum-200);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--plum-800);
    border-color: var(--plum-800);
    color: #fff;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--plum-950);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* --- Menu Section --- */
.menu {
    background: var(--plum-950);
    overflow: hidden;
}

.menu .section-tag {
    color: var(--amber-400);
}

.menu .section-title {
    color: #fff;
}

.menu .section-title em {
    color: var(--amber-300);
}

.menu .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

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

.menu-text {
    position: sticky;
    top: 120px;
}

.menu-text .btn {
    margin-top: var(--space-lg);
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.menu-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all var(--transition-base);
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.menu-card-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

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

.menu-card-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-500);
    margin-bottom: var(--space-sm);
}

.menu-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.menu-card-body > p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.88rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.menu-list li strong {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.menu-list li span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* --- Atmosphere Section --- */
.atmosphere {
    background: var(--neutral-50);
}

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

.atm-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.atm-img {
    overflow: hidden;
}

.atm-img--large {
    aspect-ratio: 4/5;
}

.atm-img--large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atm-img--small {
    aspect-ratio: 4/3;
}

.atm-img--small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atm-img-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--plum-300), var(--amber-300), transparent);
    margin: var(--space-sm) 0;
}

.atm-text .section-desc {
    margin-bottom: var(--space-md);
}

.atm-details {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--neutral-200);
}

.atm-detail {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-md);
}

.atm-detail-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neutral-400);
}

.atm-detail-value {
    font-size: 0.95rem;
    color: var(--neutral-700);
}

/* --- Visit Section --- */
.visit {
    background: var(--plum-50);
}

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

.contact-grid {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

.contact-item:hover {
    border-color: var(--plum-300);
    background: #fff;
    transform: translateX(4px);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--plum-700);
    border: 1px solid var(--plum-200);
    border-radius: 50%;
}

.contact-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--neutral-800);
    line-height: 1.5;
}

/* Form */
.visit-form-wrap {
    position: sticky;
    top: 100px;
}

.form-card {
    background: #fff;
    padding: var(--space-2xl);
    border: 1px solid var(--neutral-200);
}

.form-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--plum-950);
    margin-bottom: 0.4rem;
}

.form-sub {
    font-size: 0.9rem;
    color: var(--neutral-500);
    margin-bottom: var(--space-lg);
}

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

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

.form-group label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--neutral-800);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--neutral-200);
    outline: none;
    transition: border-color var(--transition-fast);
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-600);
}

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

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

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

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

.form-success svg {
    margin: 0 auto var(--space-md);
    color: var(--plum-600);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--plum-950);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

/* --- Map Section --- */
.map-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 7, 100, 0.85), rgba(107, 33, 168, 0.75));
    display: flex;
    align-items: center;
}

.map-content {
    text-align: center;
}

.map-content .section-tag {
    color: var(--amber-300);
}

.map-content .section-title {
    color: #fff;
    margin-bottom: var(--space-lg);
}

.map-content .section-title em {
    color: var(--amber-300);
}

/* --- Footer --- */
.footer {
    background: var(--neutral-950);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-4xl) 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-brand .nav-logo-mark {
    font-size: 48px;
    color: var(--plum-400);
}

.footer-brand-name {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
    max-width: 300px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.4rem;
}

.footer-col a,
.footer-col span {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Reveal Animations --- */
.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) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .stat-card:hover {
        transform: none;
    }
    
    .menu-card:hover,
    .contact-item:hover {
        transform: none;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .menu-text {
        position: static;
        text-align: center;
        max-width: 560px;
        margin: 0 auto var(--space-xl);
    }

    .atm-layout {
        grid-template-columns: 1fr;
    }

    .atm-images {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .visit-form-wrap {
        position: static;
        max-width: 560px;
        margin: 0 auto;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 calc(50% - 1px);
        min-width: 140px;
    }

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

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

    .atm-detail {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

    .map-section {
        height: 300px;
    }
}

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

    .section {
        padding: var(--space-3xl) 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .stat-card {
        flex: 1 1 100%;
    }

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

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