/* ============================================
   MyThai Kitchen — Stylesheet
   Color Palette: Burgundy (#7B2D3B) + Blush (#F5E6E0)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-burgundy: #7B2D3B;
    --color-burgundy-dark: #5C1F2B;
    --color-burgundy-light: #9A3D4E;
    --color-blush: #F5E6E0;
    --color-blush-light: #FBF5F2;
    --color-blush-mid: #F0D5CC;
    --color-cream: #FFF9F7;
    --color-white: #FFFFFF;
    --color-text: #2D1F24;
    --color-text-light: #6B5560;
    --color-text-muted: #9A8590;
    --color-border: #F0DDD7;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --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;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.06);
    --shadow-md: 0 4px 20px rgba(123, 45, 59, 0.08);
    --shadow-lg: 0 8px 40px rgba(123, 45, 59, 0.12);
    --shadow-xl: 0 16px 60px rgba(123, 45, 59, 0.15);
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

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

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

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

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

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 249, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(255, 249, 247, 0.95);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.logo__accent {
    color: var(--color-burgundy);
}

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

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-burgundy);
    transition: var(--transition-smooth);
}

.nav__link:hover {
    color: var(--color-burgundy);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.6rem 1.2rem;
    background: var(--color-burgundy);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 100px;
    transition: var(--transition-fast);
}

.nav__cta:hover {
    background: var(--color-burgundy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition-fast);
}

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

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero --- */
.hero {
    padding-top: 140px;
    padding-bottom: 0;
    background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-blush-light) 100%);
    position: relative;
    overflow: hidden;
}

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

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-lg);
}

.hero__eyebrow-line {
    display: block;
    width: 40px;
    height: 1.5px;
    background: var(--color-burgundy);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    max-width: 540px;
}

.hero__headline em {
    font-style: italic;
    color: var(--color-burgundy);
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

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

.hero__badges {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.hero__image-stack {
    position: relative;
    height: 600px;
}

.hero__img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__img--main {
    width: 380px;
    height: 480px;
    top: 0;
    right: 0;
}

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

.hero__img--accent {
    width: 260px;
    height: 195px;
    bottom: 120px;
    left: -30px;
    border: 4px solid var(--color-white);
}

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

.hero__img--small {
    width: 160px;
    height: 160px;
    bottom: 0;
    right: 40px;
    border: 4px solid var(--color-white);
}

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

.hero__floating-card {
    position: absolute;
    bottom: 60px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero__floating-emoji {
    font-size: 1.8rem;
}

.hero__floating-text {
    display: flex;
    flex-direction: column;
}

.hero__floating-text strong {
    font-size: 0.9rem;
    color: var(--color-text);
}

.hero__floating-text span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 100px;
    transition: var(--transition-fast);
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--color-burgundy);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

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

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

.btn--ghost:hover {
    background: var(--color-burgundy);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* --- Section Shared --- */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 560px;
}

/* --- Categories --- */
.categories {
    padding: var(--space-4xl) 0 var(--space-3xl);
    background: var(--color-blush-light);
}

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

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

.categories__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
    min-height: 280px;
    transition: var(--transition-smooth);
}

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

.category-card--large {
    grid-column: span 7;
}

.category-card--wide {
    grid-column: span 8;
}

.category-card:not(.category-card--large):not(.category-card--wide) {
    grid-column: span 4;
}

.category-card__bg {
    position: absolute;
    inset: 0;
}

.category-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(45, 31, 36, 0.75) 100%);
}

.category-card__content {
    position: relative;
    z-index: 1;
    padding: var(--space-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-white);
}

.category-card__number {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.6;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.1em;
}

.category-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    letter-spacing: -0.01em;
}

.category-card__content p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: var(--space-md);
}

.category-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.category-card:hover .category-card__arrow {
    background: var(--color-white);
    color: var(--color-burgundy);
}

.category-card__arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* --- Signature / About --- */
.signature {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
    overflow: hidden;
}

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

.signature__visual {
    position: relative;
    height: 600px;
}

.signature__image-main {
    width: 340px;
    height: 440px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.signature__image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 240px;
    height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--color-white);
    box-shadow: var(--shadow-md);
}

.signature__image-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signature__content {
    padding: var(--space-lg) 0;
}

.signature__body {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

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

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

.signature__highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blush);
    border-radius: var(--radius-md);
}

.signature__highlight strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.signature__highlight span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- Gallery --- */
.gallery {
    padding: var(--space-4xl) 0 var(--space-3xl);
    background: var(--color-blush-light);
}

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

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 280px 280px;
    gap: var(--space-md);
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 4; }
.gallery__item:nth-child(3) { grid-column: span 3; }
.gallery__item:nth-child(4) { grid-column: span 2; }
.gallery__item:nth-child(5) { grid-column: span 5; grid-row: span 2; }

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(45, 31, 36, 0.6) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-white);
    font-weight: 500;
}

/* --- Experience --- */
.experience {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

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

.experience__text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.experience__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.experience__feature {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.experience__feature:hover {
    border-color: var(--color-burgundy);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.experience__feature-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-burgundy);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.experience__feature-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.experience__feature-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.experience__visual {
    position: relative;
    height: 550px;
}

.experience__image-grid {
    position: relative;
    height: 100%;
}

.experience__exp-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.experience__exp-image:first-child {
    width: 280px;
    height: 360px;
    top: 0;
    left: 0;
}

.experience__exp-image--offset {
    width: 260px;
    height: 300px;
    bottom: 0;
    right: 0;
}

/* --- Visit / Contact --- */
.visit {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-blush-light) 0%, var(--color-blush) 100%);
}

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

.visit__text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
}

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

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

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

.visit__detail strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.visit__detail span,
.visit__detail a {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.visit__detail a:hover {
    color: var(--color-burgundy);
}

.visit__map {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* --- Footer --- */
.footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer .logo__text {
    color: var(--color-white);
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-md);
    max-width: 300px;
}

.footer__links,
.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links strong,
.footer__contact strong {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-sm);
}

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer__contact span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer__contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer__contact a:hover {
    color: var(--color-white);
}

.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.4);
}

.footer__bottom p:last-child {
    text-align: right;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: var(--space-2xl);
    }
    
    .hero__image-stack {
        height: 500px;
    }
    
    .hero__img--main {
        width: 300px;
        height: 390px;
    }
    
    .hero__img--accent {
        width: 200px;
        height: 150px;
    }
    
    .hero__img--small {
        width: 130px;
        height: 130px;
    }
    
    .signature__visual {
        height: 500px;
    }
    
    .signature__image-main {
        width: 280px;
        height: 370px;
    }
    
    .signature__image-float {
        width: 200px;
        height: 200px;
    }
    
    .experience__visual {
        height: 450px;
    }
    
    .experience__exp-image:first-child {
        width: 230px;
        height: 300px;
    }
    
    .experience__exp-image--offset {
        width: 210px;
        height: 250px;
    }
}

@media (max-width: 900px) {
    .categories__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .category-card--large,
    .category-card--wide {
        grid-column: span 2;
    }
    
    .category-card:not(.category-card--large):not(.category-card--wide) {
        grid-column: span 1;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
    .gallery__item:nth-child(2) { grid-column: span 1; }
    .gallery__item:nth-child(3) { grid-column: span 1; }
    .gallery__item:nth-child(4) { grid-column: span 1; }
    .gallery__item:nth-child(5) { grid-column: span 2; }
    
    .gallery__item {
        min-height: 220px;
    }
    
    .gallery__item--tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 249, 247, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
    }
    
    .nav.open {
        display: flex;
    }
    
    .nav__link {
        font-size: 1.2rem;
    }
    
    .nav__cta {
        font-size: 1rem;
        padding: 0.8rem 1.6rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 110px;
    }
    
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero__visual {
        order: -1;
    }
    
    .hero__image-stack {
        height: 380px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero__img--main {
        width: 220px;
        height: 290px;
    }
    
    .hero__img--accent {
        width: 150px;
        height: 113px;
        left: -10px;
        bottom: 80px;
    }
    
    .hero__img--small {
        width: 110px;
        height: 110px;
        right: 20px;
    }
    
    .hero__floating-card {
        left: 20px;
        bottom: 40px;
        padding: var(--space-sm) var(--space-md);
    }
    
    .hero__floating-emoji {
        font-size: 1.4rem;
    }
    
    .signature__grid,
    .experience__inner,
    .visit__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .signature__visual {
        height: 400px;
        order: -1;
    }
    
    .signature__image-main {
        width: 220px;
        height: 300px;
    }
    
    .signature__image-float {
        width: 160px;
        height: 160px;
    }
    
    .experience__visual {
        height: 380px;
        order: -1;
    }
    
    .experience__exp-image:first-child {
        width: 180px;
        height: 240px;
    }
    
    .experience__exp-image--offset {
        width: 170px;
        height: 200px;
    }
    
    .experience__features {
        grid-template-columns: 1fr;
    }
    
    .visit__map {
        height: 300px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .footer__bottom p:last-child {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero__headline {
        font-size: 1.9rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__badges {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .categories__grid {
        grid-template-columns: 1fr;
    }
    
    .category-card--large,
    .category-card--wide {
        grid-column: span 1;
    }
    
    .category-card {
        min-height: 220px;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item:nth-child(1),
    .gallery__item:nth-child(5) {
        grid-column: span 1;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
