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

:root {
    --plum: #7B2CBF;
    --plum-dark: #5A1D8A;
    --plum-deep: #3D1461;
    --plum-light: #9D4EDD;
    --plum-pale: #E8D5F5;
    --amber: #D97706;
    --amber-light: #F59E0B;
    --amber-pale: #FEF3C7;
    --amber-dark: #B45309;
    --cream: #FFFBF5;
    --cream-dark: #F5F0E8;
    --dark: #1A1A2E;
    --dark-soft: #2D2D44;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --white: #FFFFFF;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Space Grotesk', 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.1);
    --shadow-lg: 0 10px 40px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 26, 46, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BACKGROUND SHAPES ===== */
.bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.04;
}

.shape--circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--plum);
    top: -200px;
    right: -150px;
}

.shape--circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--amber);
    bottom: 20%;
    left: -100px;
}

.shape--triangle {
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 346px solid var(--plum);
    top: 40%;
    right: -80px;
    opacity: 0.03;
    transform: rotate(15deg);
}

.shape--square {
    width: 200px;
    height: 200px;
    background: var(--amber);
    bottom: 10%;
    right: 10%;
    transform: rotate(45deg);
    border-radius: var(--radius-sm);
}

.shape--ring {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid var(--plum-light);
    top: 60%;
    left: 5%;
    opacity: 0.02;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 251, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 44, 191, 0.08);
    transition: box-shadow 0.3s ease;
}

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

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--dark);
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.03);
}

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

.logo__icon {
    flex-shrink: 0;
}

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

.nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-soft);
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.nav__link:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    margin-left: 8px;
    background: var(--plum);
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav__cta:hover {
    background: var(--plum-dark);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__bar {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn--primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.btn--primary:hover {
    background: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 44, 191, 0.35);
}

.btn--secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid rgba(123, 44, 191, 0.2);
}

.btn--secondary:hover {
    border-color: var(--plum);
    color: var(--plum);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

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

/* ===== SECTION COMMON ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--amber);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title-accent {
    color: var(--plum);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 48px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--plum-pale) 50%, var(--amber-pale) 100%);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--amber-pale);
    border: 1px solid var(--amber);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--amber-dark);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    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(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero__headline-accent {
    color: var(--plum);
    display: block;
}

.hero__subheadline {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

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

/* Floating Stat Cards */
.hero__stats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    pointer-events: auto;
    animation: float 6s ease-in-out infinite;
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--plum);
    line-height: 1;
}

.stat-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.stat-card--1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
    border-left: 4px solid var(--amber);
}

.stat-card--2 {
    bottom: 25%;
    right: -40px;
    animation-delay: 1.5s;
    border-left: 4px solid var(--plum);
}

.stat-card--3 {
    bottom: 8%;
    left: 5%;
    animation-delay: 3s;
    border-left: 4px solid var(--amber-light);
}

.stat-card--4 {
    top: 5%;
    left: 0;
    animation-delay: 4.5s;
    border-left: 4px solid var(--plum-light);
}

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

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-xl);
}

.hero__image {
    width: 100%;
    height: 100%;
}

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

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123, 44, 191, 0.3) 0%, transparent 40%);
    border-radius: var(--radius-xl);
}

/* ===== ABOUT ===== */
.about {
    position: relative;
    z-index: 1;
    padding: 120px 0;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__paragraph {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.value-item__icon {
    width: 48px;
    height: 48px;
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item__text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.about__image-group {
    position: relative;
}

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

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

.about__image-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream);
}

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

/* ===== MENU ===== */
.menu {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--plum-pale) 100%);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.menu-card__tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--amber);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
}

.menu-card__body {
    padding: 24px;
}

.menu-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.menu-card__description {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.menu__cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.menu__cta p {
    font-size: 1rem;
    color: var(--gray);
}

/* ===== GALLERY ===== */
.gallery {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--dark);
}

.gallery .section-title {
    color: var(--white);
}

.gallery .section-title-accent {
    color: var(--amber-light);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 16px;
    margin-top: 48px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

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

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: var(--cream);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-card__quote {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    color: var(--plum-pale);
    line-height: 1;
}

.testimonial-card__text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    flex-shrink: 0;
}

.testimonial-card__name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

/* ===== CONTACT ===== */
.contact {
    position: relative;
    z-index: 1;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 100%);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-title-accent {
    color: var(--amber-light);
}

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

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact__card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.contact__card-icon {
    width: 52px;
    height: 52px;
    background: var(--amber);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.contact__card-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact__card-text a {
    color: var(--amber-light);
    transition: color 0.2s ease;
}

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

.contact__form-wrapper {
    display: flex;
}

.contact__form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    box-shadow: var(--shadow-xl);
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact__form-subtitle {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--plum);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--gray-light);
}

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

.form-success {
    text-align: center;
    padding: 24px;
}

.form-success__icon {
    margin-bottom: 16px;
}

.form-success__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-success__text {
    font-size: 0.95rem;
    color: var(--gray);
}

/* ===== MAP SECTION ===== */
.map-section {
    position: relative;
    z-index: 1;
}

.map-section__image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 20, 97, 0.85) 0%, rgba(123, 44, 191, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.map-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.map-section__address {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    z-index: 1;
    background: var(--dark);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a,
.footer__contact a,
.footer__contact li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--amber-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__stats {
        display: none;
    }

    .hero__image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .about__image-small {
        right: 10px;
        bottom: -20px;
    }

    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-rows: repeat(3, 200px);
    }

    .gallery__item--large {
        grid-column: span 7;
        grid-row: span 1;
    }

    .gallery__item--wide {
        grid-column: span 5;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 32px 32px;
        gap: 4px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav__list.open {
        right: 0;
    }

    .nav__link {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .nav__cta {
        margin-left: 0;
        margin-top: 16px;
        justify-content: center;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__card {
        padding: 32px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

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

    .gallery__grid {
        grid-template-rows: repeat(6, 180px);
    }

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: span 12;
        grid-row: span 1;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

    .hero__card {
        padding: 24px;
    }

    .hero__headline {
        font-size: 1.75rem;
    }

    .contact__form-card {
        padding: 24px;
    }
}

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
