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

:root {
    --plum: #7B2D8B;
    --plum-dark: #5A1E68;
    --plum-deep: #3D1449;
    --plum-light: #9B4DB8;
    --amber: #F5A623;
    --amber-dark: #D4891A;
    --amber-light: #FCC86B;
    --cream: #FDF8F4;
    --cream-dark: #F5EDE6;
    --charcoal: #1A1A2E;
    --slate: #2D2D44;
    --gray-100: #F7F7FA;
    --gray-200: #E8E8F0;
    --gray-300: #D1D1DE;
    --gray-500: #7A7A9A;
    --gray-700: #4A4A6A;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.1);
    --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 700;
}

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

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

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

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 45, 139, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(253, 248, 244, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--plum);
}

.nav__logo-text {
    letter-spacing: -0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--plum);
    background: rgba(123, 45, 139, 0.06);
}

.nav__link--cta {
    background: var(--plum);
    color: var(--white) !important;
    margin-left: 8px;
}

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

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

.nav__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    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);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu__link {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--plum);
    background: rgba(123, 45, 139, 0.06);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: var(--plum);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-md);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 45, 139, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(123, 45, 139, 0.08);
    border: 1px solid rgba(123, 45, 139, 0.15);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--plum);
    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.6; transform: scale(1.2); }
}

.hero__headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero__headline span {
    color: var(--plum);
}

.hero__subheadline {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero__stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.hero__stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

.hero__image-wrapper {
    position: relative;
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--amber);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.4;
}

.hero__image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero__image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.btn--ghost {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--gray-300);
}

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

.btn--full {
    width: 100%;
}

/* ===== Marquee ===== */
.marquee {
    background: var(--plum);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.marquee__track {
    display: flex;
    gap: 32px;
    align-items: center;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee__track span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee__sep {
    color: var(--amber) !important;
    font-size: 0.75rem !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Section Common ===== */
.section {
    padding: 100px 0;
}

.section__header {
    margin-bottom: 60px;
}

.section__header--center {
    text-align: center;
}

.section__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum);
    margin-bottom: 12px;
}

.section__eyebrow--light {
    color: var(--amber);
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--charcoal);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

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

.section__subtitle {
    font-size: 1.1rem;
    color: var(--gray-700);
    line-height: 1.7;
    max-width: 560px;
}

.section__header--center .section__subtitle {
    margin: 0 auto;
}

/* ===== Menu Section ===== */
.menu {
    background: var(--white);
}

.menu__categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.menu__cat {
    padding: 10px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-200);
    border-radius: 100px;
    transition: var(--transition);
}

.menu__cat:hover {
    border-color: var(--plum);
    color: var(--plum);
}

.menu__cat.active {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--white);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.menu__card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(123, 45, 139, 0.06);
}

.menu__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(123, 45, 139, 0.12);
}

.menu__card-img {
    height: 200px;
    overflow: hidden;
}

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

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

.menu__card-body {
    padding: 20px;
}

.menu__card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.menu__card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
}

.menu__card-tag {
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.menu__card-tag--popular {
    background: rgba(245, 166, 35, 0.15);
    color: var(--amber-dark);
}

.menu__card-tag--new {
    background: rgba(123, 45, 139, 0.1);
    color: var(--plum);
}

.menu__card-tag--limited {
    background: rgba(26, 26, 46, 0.08);
    color: var(--charcoal);
}

.menu__card-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ===== About Section ===== */
.about {
    background: var(--cream);
}

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

.about__images {
    position: relative;
}

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

.about__img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about__img-stack {
    position: absolute;
    bottom: -40px;
    right: -40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.about__img-stack img {
    width: 240px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 4px solid var(--cream);
    box-shadow: var(--shadow-md);
}

.about__img-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: var(--amber);
    border-radius: var(--radius-md);
    opacity: 0.3;
    z-index: -1;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about__feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(123, 45, 139, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.about__feature span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ===== Experience Section ===== */
.experience {
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(155, 77, 184, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.experience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.experience__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.experience__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experience__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.experience__list-icon {
    width: 24px;
    height: 24px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.experience__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 560px;
}

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

/* ===== Location Section ===== */
.location {
    background: var(--white);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

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

.location__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(123, 45, 139, 0.06);
    transition: var(--transition);
}

.location__card:hover {
    border-color: rgba(123, 45, 139, 0.15);
    box-shadow: var(--shadow-sm);
}

.location__card-icon {
    width: 48px;
    height: 48px;
    background: rgba(123, 45, 139, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location__card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 6px;
}

.location__card p {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.location__card a {
    color: var(--plum);
    font-weight: 500;
    transition: var(--transition);
}

.location__card a:hover {
    color: var(--plum-dark);
}

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

/* ===== Contact Section ===== */
.contact {
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.contact__detail:hover {
    color: var(--amber-light);
}

.contact__detail a {
    color: inherit;
}

.contact__detail a:hover {
    color: var(--amber-light);
}

.contact__form-wrapper {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 36px;
    backdrop-filter: blur(10px);
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.1);
}

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

.form__success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-md);
    color: #4ADE80;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    padding: 60px 0 0;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer__hours p,
.footer__contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

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

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

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero__grid,
    .about__grid,
    .experience__grid,
    .contact__grid {
        gap: 40px;
    }

    .hero__image {
        height: 440px;
    }

    .experience__image {
        height: 440px;
    }

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

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        display: none;
    }

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

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

    .hero__image-wrapper {
        order: -1;
    }

    .hero__image {
        height: 360px;
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero__stats {
        gap: 20px;
    }

    .section {
        padding: 70px 0;
    }

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

    .about__img-stack {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }

    .about__img-main img {
        height: 300px;
    }

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

    .experience__image {
        height: 320px;
        order: -1;
    }

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

    .location__map {
        min-height: 280px;
    }

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

    .contact__form-wrapper {
        padding: 24px;
    }

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

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__stat-divider {
        display: none;
    }

    .menu__categories {
        gap: 6px;
    }

    .menu__cat {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

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

    .about__img-stack img {
        width: 100%;
        height: 200px;
    }
}
