/* ============================================
   VANESSAS ICE CREAM SHOP — STYLES
   Palette: Plum (#7c3aed) + Amber (#f59e0b)
   Fonts: Playfair Display + Outfit
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum: #7c3aed;
    --plum-dark: #5b21b6;
    --plum-deeper: #1e1b4b;
    --plum-light: #a78bfa;
    --plum-muted: #ede9fe;
    --amber: #f59e0b;
    --amber-light: #fbbf24;
    --amber-dark: #d97706;
    --pink: #ec4899;
    --pink-light: #f9a8d4;
    --bg-cream: #fffbf5;
    --bg-warm: #fff8ef;
    --text-dark: #1e1b4b;
    --text-mid: #4338ca;
    --text-body: #374151;
    --text-light: #6b7280;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(30, 27, 75, 0.06);
    --shadow-md: 0 8px 30px rgba(30, 27, 75, 0.10);
    --shadow-lg: 0 20px 60px rgba(30, 27, 75, 0.14);
    --shadow-card: 0 4px 20px rgba(124, 58, 237, 0.08);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-body);
    background: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ---- BLOBS ---- */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.blob--amber {
    width: 500px;
    height: 500px;
    background: var(--amber);
    top: -100px;
    right: -100px;
}
.blob--plum {
    width: 400px;
    height: 400px;
    background: var(--plum);
    bottom: 20%;
    left: -80px;
}
.blob--pink {
    width: 300px;
    height: 300px;
    background: var(--pink);
    top: 50%;
    right: 10%;
    opacity: 0.2;
}

/* ---- CONTAINER ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}
.nav.scrolled {
    background: rgba(255, 251, 245, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.15rem;
    z-index: 1001;
}
.nav__logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.3rem;
    letter-spacing: -0.02em;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav__link {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 100px;
    transition: var(--transition);
}
.nav__link:hover {
    color: var(--plum);
    background: var(--plum-muted);
}
.nav__cta-btn {
    text-decoration: none;
    background: var(--plum);
    color: var(--white) !important;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    transition: var(--transition);
    margin-left: 8px;
}
.nav__cta-btn:hover {
    background: var(--plum-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav__toggle-bar {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.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 ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--plum-muted);
    color: var(--plum);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero__headline-accent {
    color: var(--plum);
    position: relative;
    display: inline;
}
.hero__headline-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--amber-light);
    opacity: 0.4;
    border-radius: 4px;
    z-index: -1;
}
.hero__subheadline {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}
.btn--primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.25);
}
.btn--primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
}
.btn--ghost {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid rgba(30, 27, 75, 0.12);
}
.btn--ghost:hover {
    border-color: var(--plum);
    color: var(--plum);
    transform: translateY(-2px);
}
.btn--lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ---- HERO VISUAL ---- */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero__hero-img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: auto;
    aspect-ratio: 520 / 620;
    object-fit: cover;
}
.hero__hero-card-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--amber);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
    z-index: -1;
}

/* ---- FLOAT CARDS ---- */
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.float-card--1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}
.float-card--2 {
    bottom: 25%;
    left: -50px;
    animation-delay: 1.3s;
}
.float-card--3 {
    bottom: 5%;
    right: -20px;
    animation-delay: 2.6s;
}
.float-card__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--plum-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}
.float-card__icon--amber {
    background: #fef3c7;
}
.float-card__icon--pink {
    background: #fce7f3;
}
.float-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}
.float-card__value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}

/* ---- HERO SHAPES ---- */
.hero__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.shape {
    position: absolute;
}
.shape--circle-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--plum);
    opacity: 0.04;
    top: -80px;
    right: 5%;
}
.shape--circle-2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--amber);
    opacity: 0.08;
    bottom: 15%;
    left: 3%;
}
.shape--triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid var(--pink);
    opacity: 0.06;
    top: 25%;
    left: 42%;
    transform: rotate(15deg);
}
.shape--square {
    width: 60px;
    height: 60px;
    background: var(--amber);
    opacity: 0.07;
    border-radius: 12px;
    bottom: 25%;
    right: 38%;
    transform: rotate(30deg);
}

/* ---- DIVIDER ---- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px;
    max-width: 400px;
    margin: 0 auto;
}
.divider__line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--plum-light), transparent);
    border-radius: 2px;
}
.divider__dot {
    width: 10px;
    height: 10px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- SECTION TAG ---- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum);
    background: var(--plum-muted);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

/* ---- SECTION TITLE ---- */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

/* ---- SECTION DESC ---- */
.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}
.section-header--center {
    text-align: center;
}
.section-header--center .section-desc {
    margin: 0 auto;
}

/* ---- SECTION PADDING ---- */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

/* ---- MENU ---- */
.menu {
    background: var(--bg-warm);
}
.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.menu-card__visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 400 / 280;
}
.menu-card__visual-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.04) 20px,
        rgba(255,255,255,0.04) 40px
    );
    z-index: 1;
}
.menu-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.menu-card:hover .menu-card__visual img {
    transform: scale(1.05);
}
.menu-card__body {
    padding: 24px 28px 28px;
}
.menu-card__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--plum-muted);
    color: var(--plum);
    margin-bottom: 12px;
}
.menu-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.menu-card__desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}
.menu__note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--plum-muted);
    font-size: 0.95rem;
    color: var(--text-mid);
}
.menu__note a {
    color: var(--plum);
    font-weight: 600;
    text-decoration: none;
}
.menu__note a:hover {
    text-decoration: underline;
}

/* ---- ABOUT ---- */
.about__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__images {
    position: relative;
}
.about__img-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about__img-main img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 680;
    object-fit: cover;
}
.about__img-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: var(--amber);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
}
.about__img-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}
.about__img-float img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 300;
    object-fit: cover;
}
.about__experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--plum);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about__exp-number {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}
.about__exp-number--big {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 4px 0;
}
.about__exp-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.7;
}
.about__content {
    padding: 20px 0;
}
.about__text {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.highlight-item__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--plum-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.highlight-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}
.highlight-item__sub {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ---- GALLERY ---- */
.gallery {
    padding: 80px 0 100px;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    margin-top: 56px;
}
.gallery__item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}
.gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery__item:hover img {
    transform: scale(1.05);
}
.gallery__item--wide {
    grid-column: span 7;
    aspect-ratio: 800 / 400;
}
.gallery__item--tall {
    grid-column: span 5;
    grid-row: span 2;
    aspect-ratio: auto;
}
.gallery__item:not(.gallery__item--wide):not(.gallery__item--tall) {
    aspect-ratio: 400 / 400;
}

/* ---- VISIT ---- */
.visit {
    background: var(--plum-deeper);
    color: var(--white);
    overflow: hidden;
}
.visit__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}
.visit__info {
    padding: 40px 0;
}
.visit .section-tag {
    background: rgba(255,255,255,0.12);
    color: var(--amber-light);
}
.visit .section-title {
    color: var(--white);
}
.visit .section-title br {
    display: none;
}
.visit__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 440px;
}
.visit__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}
.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.visit__detail-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.visit__detail strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}
.visit__detail span,
.visit__detail a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}
.visit__detail a:hover {
    color: var(--amber-light);
}
.visit .btn--primary {
    background: var(--amber);
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.visit .btn--primary:hover {
    background: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}
.visit__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow-lg);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--plum-deeper);
    color: var(--white);
    padding: 80px 0 0;
}
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}
.footer__logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.2rem;
}
.footer__tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer__heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber-light);
    margin-bottom: 20px;
}
.footer__contact p,
.footer__hours p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}
.footer__contact a,
.footer__hours a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: var(--transition);
}
.footer__contact a:hover {
    color: var(--amber-light);
}
.footer__hours-note {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.35) !important;
    font-style: italic;
    margin-top: 8px !important;
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.88rem;
}
.footer__bottom p:last-child {
    color: rgba(255,255,255,0.3);
}

/* ---- REVEAL ANIMATION ---- */
.js-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }
    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about__layout {
        gap: 50px;
    }
    .gallery__item--wide {
        grid-column: span 8;
    }
    .gallery__item--tall {
        grid-column: span 4;
        grid-row: span 1;
        aspect-ratio: auto;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    .nav__links.open {
        right: 0;
    }
    .nav__links .nav__link {
        width: 100%;
        padding: 14px 16px;
        font-size: 1.1rem;
        border-radius: var(--radius-sm);
    }
    .nav__links .nav__cta-btn {
        margin-left: 0;
        margin-top: 16px;
        text-align: center;
        width: 100%;
        padding: 14px 24px;
        border-radius: var(--radius-md);
    }
    .nav__toggle {
        display: flex;
    }
    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(30, 27, 75, 0.5);
        z-index: 999;
    }
    .mobile-overlay.active {
        display: block;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero__visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero__hero-img {
        max-width: 100%;
    }
    .float-card {
        display: none;
    }
    .hero__headline {
        text-align: center;
    }
    .hero__subheadline {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__actions {
        justify-content: center;
    }
    .hero__badge {
        margin-left: auto;
        margin-right: auto;
    }

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

    .about__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about__images {
        max-width: 480px;
        margin: 0 auto;
    }
    .about__experience-badge {
        padding: 18px 24px;
    }
    .about__exp-number--big {
        font-size: 1.5rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery__item--wide {
        grid-column: span 2;
    }
    .gallery__item--tall {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 400 / 400;
    }

    .visit__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .visit__map {
        min-height: 320px;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    section {
        padding: 70px 0;
    }
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .hero__actions .btn {
        justify-content: center;
        width: 100%;
    }
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    .gallery__item--wide {
        grid-column: span 1;
    }
}
