/* ========================================
   SOUL NUTRITION — Custom Styles
   Deep Navy (#1A2744) + Warm Gold (#C9A84C)
   ======================================== */

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

:root {
    --navy: #1A2744;
    --navy-light: #243356;
    --navy-dark: #0F1A2E;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #B8943F;
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

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

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

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

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

/* --- Typography --- */
.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.section__title em,
.hero__headline em {
    font-style: italic;
    color: var(--gold);
}

.section__desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.7;
}

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

.section__header--centered .section__desc {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 60px;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

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

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(26, 39, 68, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.nav__logo-text {
    transition: color 0.3s;
}

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

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
    transition: color 0.3s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav__cta {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.3s var(--ease-out);
}

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

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

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

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--white);
    padding: 8px;
    transition: transform 0.3s;
}

.mobile-menu__close:hover {
    transform: rotate(90deg);
}

.mobile-menu__list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__link {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    padding: 12px 0;
    transition: color 0.3s;
}

.mobile-menu__link:hover {
    color: var(--gold);
}

.mobile-menu__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 16px 0;
}

.mobile-menu__cta {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold) !important;
    padding: 12px 0 !important;
}

.mobile-menu__email {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 12px 0 !important;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 26, 46, 0.85) 0%,
        rgba(26, 39, 68, 0.7) 50%,
        rgba(26, 39, 68, 0.5) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 80px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 28px;
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out) 0.9s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
    opacity: 0;
}

.hero__scroll svg {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ========================================
   INTRO STRIP
   ======================================== */
.intro {
    background: var(--navy);
    padding: 28px 0;
}

.intro__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.intro__item {
    display: flex;
    align-items: center;
    gap: 0;
}

.intro__label {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 24px;
}

.intro__divider {
    color: var(--gold);
    font-size: 1.2rem;
    opacity: 0.6;
}

/* ========================================
   MENU
   ======================================== */
.menu {
    padding: 120px 0;
    background: var(--cream);
}

.menu .section__header {
    text-align: center;
    margin-bottom: 60px;
}

.menu .section__desc {
    margin: 0 auto;
}

.menu__categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}

.menu__cat {
    padding: 10px 28px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-mid);
    border: 1.5px solid var(--cream-dark);
    border-radius: 60px;
    background: transparent;
    transition: all 0.3s var(--ease-out);
}

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

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

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

.menu__item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26, 39, 68, 0.06);
    transition: all 0.4s var(--ease-out);
    opacity: 1;
    transform: translateY(0);
}

.menu__item.hidden {
    display: none;
}

.menu__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(26, 39, 68, 0.12);
}

.menu__item-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.menu__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.menu__item:hover .menu__item-img img {
    transform: scale(1.06);
}

.menu__item-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--gold);
    color: var(--navy-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 60px;
}

.menu__item-body {
    padding: 24px;
}

.menu__item-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.menu__item-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.menu__item-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.12);
    padding: 3px 10px;
    border-radius: 60px;
}

.menu__item-desc {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.65;
}

.menu__note {
    text-align: center;
    margin-top: 48px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 39, 68, 0.15);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 39, 68, 0.2);
    border: 6px solid var(--white);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about__img-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
}

.about__content {
    max-width: 520px;
}

.about__body {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}

.about__stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ========================================
   EXPERIENCE
   ======================================== */
.experience {
    padding: 120px 0;
    background: var(--cream);
}

.experience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.experience__card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(26, 39, 68, 0.06);
    transition: all 0.4s var(--ease-out);
}

.experience__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 39, 68, 0.12);
}

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

.experience__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.experience__card:hover .experience__card-img img {
    transform: scale(1.06);
}

.experience__card-body {
    padding: 32px;
}

.experience__card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.experience__card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIAL
   ======================================== */
.testimonial {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.testimonial__bg {
    position: absolute;
    inset: 0;
}

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

.testimonial__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 26, 46, 0.9) 0%, rgba(26, 39, 68, 0.8) 100%);
}

.testimonial__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial__quote-icon {
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0.6;
}

.testimonial__text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 32px;
}

.testimonial__attr {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ========================================
   VISIT
   ======================================== */
.visit {
    padding: 120px 0;
    background: var(--white);
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit__info .section__title {
    margin-bottom: 40px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit__detail {
    display: flex;
    gap: 16px;
}

.visit__icon {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
}

.visit__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.visit__detail-value {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.visit__link {
    color: var(--navy);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.visit__link:hover {
    border-bottom-color: var(--gold);
}

.visit__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 39, 68, 0.1);
    aspect-ratio: 4/3;
    min-height: 400px;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

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

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 26, 46, 0.88) 0%, rgba(26, 39, 68, 0.78) 100%);
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta__eyebrow {
    color: var(--gold);
    margin-bottom: 16px;
}

.cta__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.cta__desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 64px;
}

.footer__brand {
    max-width: 300px;
}

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

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.footer__heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

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

.footer__links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s;
}

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

.footer__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__contact-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    transition: color 0.3s;
}

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

.footer__contact-link svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--gold);
    opacity: 0.7;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    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; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .about__grid {
        gap: 60px;
    }

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

    .experience__card:last-child {
        grid-column: span 2;
    }

    .experience__card:last-child .experience__card-img {
        aspect-ratio: 16/9;
    }

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

    .footer__brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .about__img-secondary {
        right: -20px;
        bottom: -20px;
    }

    .visit__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .visit__map {
        aspect-ratio: 16/9;
        min-height: 300px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero__headline {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .menu__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .experience__card:last-child {
        grid-column: span 1;
    }

    .experience__card:last-child .experience__card-img {
        aspect-ratio: 3/2;
    }

    .about__stats {
        flex-wrap: wrap;
        gap: 24px;
    }

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

    .footer__brand {
        grid-column: span 1;
    }

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

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

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

    .menu__categories {
        gap: 6px;
    }

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

    .cta__actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .about__img-secondary {
        right: 0;
        bottom: -16px;
    }
}
