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

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

body {
    background-color: #fdfcf8;
    color: #172b17;
    font-family: 'Montserrat', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

/* ===== Typography ===== */
.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3d6b3d;
    margin-bottom: 16px;
    display: block;
}

.section-headline {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: #172b17;
    margin-bottom: 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--dark {
    background-color: #2d522d;
    color: #fdfcf8;
    border-color: #2d522d;
}

.btn--dark:hover {
    background-color: #1d351d;
    border-color: #1d351d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(29, 53, 29, 0.25);
}

.btn--light {
    background-color: #fdfcf8;
    color: #172b17;
    border-color: #fdfcf8;
}

.btn--light:hover {
    background-color: #f2edd8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-light {
    background-color: transparent;
    color: #fdfcf8;
    border-color: rgba(253, 252, 248, 0.6);
}

.btn--outline-light:hover {
    background-color: rgba(253, 252, 248, 0.1);
    border-color: #fdfcf8;
    transform: translateY(-2px);
}

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

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 252, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 82, 45, 0.1);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(23, 43, 23, 0.08);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #172b17;
}

.nav__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #2d522d;
    color: #fdfcf8;
    font-size: 1rem;
    border-radius: 50%;
    font-family: 'Lora', Georgia, serif;
}

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

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

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2d522d;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #2d522d;
    transition: width 0.3s ease;
}

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

.nav__link--cta {
    background-color: #2d522d;
    color: #fdfcf8;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background-color: #1d351d;
    transform: translateY(-1px);
    color: #fdfcf8;
}

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

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background-color: #172b17;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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 Nav ===== */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(253, 252, 248, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav__link {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    color: #172b17;
    transition: color 0.3s ease;
}

.mobile-nav__link:hover {
    color: #3d6b3d;
}

.mobile-nav__link--cta {
    margin-top: 16px;
    background-color: #2d522d;
    color: #fdfcf8;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/29251136/pexels-photo-29251136.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 24, 12, 0.72) 0%,
        rgba(23, 43, 23, 0.65) 50%,
        rgba(12, 24, 12, 0.80) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero__eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(253, 252, 248, 0.7);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fdfcf8;
    margin-bottom: 24px;
}

.hero__subhead {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.0625rem, 2vw, 1.3125rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(253, 252, 248, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(253, 252, 248, 0.5);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

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

/* ===== About ===== */
.about {
    padding: 120px 0;
    background-color: #fdfcf8;
}

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

.about__image-wrap {
    position: relative;
}

.about__image {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 4px;
}

.about__image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    background-color: #e3ebE3;
    border-radius: 4px;
    z-index: -1;
}

.about__content {
    padding: 24px 0;
}

.about__text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2d522d;
    margin-bottom: 20px;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(45, 82, 45, 0.15);
}

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

.about__stat-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d522d;
    line-height: 1;
}

.about__stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #649064;
}

/* ===== Menu ===== */
.menu {
    padding: 120px 0;
    background-color: #f2f7f2;
}

.menu__header {
    text-align: center;
    margin-bottom: 72px;
}

.menu__header .section-headline {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu__categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 72px;
}

.menu__category-header {
    margin-bottom: 24px;
}

.menu__category-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #172b17;
    margin-bottom: 4px;
}

.menu__category-subtitle {
    font-size: 0.8125rem;
    color: #649064;
    font-style: italic;
    font-family: 'Lora', Georgia, serif;
}

.menu__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu__item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: center;
    background-color: #fdfcf8;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(23, 43, 23, 0.1);
}

.menu__item img {
    width: 200px;
    height: 160px;
    object-fit: cover;
}

.menu__item-info {
    padding: 16px 20px 16px 0;
}

.menu__item-desc {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #2d522d;
}

.menu__cta {
    text-align: center;
}

.menu__cta .btn {
    margin-bottom: 16px;
}

.menu__cta-note {
    font-size: 0.8125rem;
    color: #649064;
    font-style: italic;
    font-family: 'Lora', Georgia, serif;
}

/* ===== Experience ===== */
.experience {
    padding: 120px 0;
    background-color: #fdfcf8;
}

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

.experience__text {
    padding-right: 24px;
}

.experience__text .section-headline {
    margin-bottom: 20px;
}

.experience__text > p {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2d522d;
    margin-bottom: 48px;
}

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

.experience__feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.experience__icon {
    flex-shrink: 0;
    color: #2d522d;
    margin-top: 2px;
}

.experience__feature-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #172b17;
    margin-bottom: 4px;
}

.experience__feature-desc {
    font-size: 0.9375rem;
    color: #3d6b3d;
    line-height: 1.6;
}

.experience__images {
    position: relative;
}

.experience__img-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}

.experience__img--main {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 4px;
}

.experience__img--accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 16px 40px rgba(23, 43, 23, 0.15);
}

/* ===== Visit ===== */
.visit {
    padding: 120px 0;
    background-color: #2d522d;
    color: #fdfcf8;
}

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

.visit .section-eyebrow {
    color: rgba(253, 252, 248, 0.6);
}

.visit .section-headline {
    color: #fdfcf8;
    margin-bottom: 48px;
}

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

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

.visit__detail-icon {
    flex-shrink: 0;
    color: rgba(253, 252, 248, 0.6);
    margin-top: 2px;
}

.visit__detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(253, 252, 248, 0.5);
    margin-bottom: 4px;
}

.visit__detail-value {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #fdfcf8;
}

.visit__detail-value--link {
    transition: color 0.3s ease;
}

.visit__detail-value--link:hover {
    color: #c5d8c5;
}

.visit .btn--dark {
    background-color: #fdfcf8;
    color: #172b17;
    border-color: #fdfcf8;
}

.visit .btn--dark:hover {
    background-color: #f2edd8;
    border-color: #f2edd8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.visit__map {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.visit__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    background-image: url('https://images.pexels.com/photos/35336025/pexels-photo-35336025.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=800&h=600');
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.visit__map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 12, 0.5);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.visit__map-placeholder:hover::before {
    background: rgba(12, 24, 12, 0.35);
}

.visit__map-placeholder:hover {
    transform: scale(1.02);
}

.visit__map-icon,
.visit__map-text,
.visit__map-note {
    position: relative;
    z-index: 1;
}

.visit__map-icon {
    color: rgba(253, 252, 248, 0.8);
}

.visit__map-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fdfcf8;
    text-align: center;
    line-height: 1.5;
}

.visit__map-note {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253, 252, 248, 0.6);
}

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background-color: #f2f7f2;
}

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

.contact__text {
    padding-top: 16px;
}

.contact__text .section-headline {
    margin-bottom: 20px;
}

.contact__text > p {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2d522d;
    margin-bottom: 32px;
}

.contact__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d522d;
    transition: color 0.3s ease;
}

.contact__phone:hover {
    color: #1d351d;
}

.contact__form-wrap {
    background-color: #fdfcf8;
    border-radius: 4px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(23, 43, 23, 0.06);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2d522d;
}

.contact__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(45, 82, 45, 0.2);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    color: #172b17;
    background-color: #fdfcf8;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.contact__input::placeholder {
    color: #96b896;
}

.contact__input:focus {
    border-color: #2d522d;
    box-shadow: 0 0 0 3px rgba(45, 82, 45, 0.1);
}

.contact__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232d522d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.contact__form-note {
    font-size: 0.8125rem;
    color: #649064;
    text-align: center;
    font-style: italic;
    font-family: 'Lora', Georgia, serif;
}

.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 48px 24px;
}

.contact__success.visible {
    display: flex;
}

.contact__success svg {
    color: #2d522d;
}

.contact__success-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #172b17;
}

.contact__success-text {
    font-size: 1rem;
    color: #3d6b3d;
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background-color: #0c180c;
    color: rgba(253, 252, 248, 0.7);
    padding: 72px 0 0;
}

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

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #2d522d;
    color: #fdfcf8;
    font-size: 1.25rem;
    border-radius: 50%;
    font-family: 'Lora', Georgia, serif;
    margin-bottom: 4px;
}

.footer__logo-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #fdfcf8;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(253, 252, 248, 0.5);
    max-width: 280px;
}

.footer__heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(253, 252, 248, 0.4);
    margin-bottom: 20px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 0.9375rem;
    color: rgba(253, 252, 248, 0.6);
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #c5d8c5;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__address {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(253, 252, 248, 0.6);
}

.footer__phone {
    font-size: 0.9375rem;
    color: #c5d8c5;
    transition: color 0.3s ease;
}

.footer__phone:hover {
    color: #fdfcf8;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(253, 252, 248, 0.3);
}

.footer__credit {
    font-style: italic;
    font-family: 'Lora', Georgia, serif;
    color: rgba(253, 252, 248, 0.25);
}

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

.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,
    .experience__inner,
    .visit__grid,
    .contact__inner {
        gap: 48px;
    }

    .menu__categories {
        gap: 32px;
    }

    .experience__img--accent {
        width: 220px;
        height: 160px;
        right: -20px;
        bottom: -20px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .nav__inner {
        height: 64px;
    }

    .mobile-nav {
        top: 64px;
    }

    .hero {
        min-height: 100svh;
    }

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

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .about {
        padding: 80px 0;
    }

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

    .about__image {
        height: 480px;
    }

    .about__image-accent {
        display: none;
    }

    .about__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .menu {
        padding: 80px 0;
    }

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

    .menu__item {
        grid-template-columns: 120px 1fr;
        gap: 12px;
    }

    .menu__item img {
        width: 120px;
        height: 120px;
    }

    .menu__item-info {
        padding: 12px 12px 12px 0;
    }

    .experience {
        padding: 80px 0;
    }

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

    .experience__text {
        padding-right: 0;
    }

    .experience__img--main {
        height: 400px;
    }

    .experience__img--accent {
        position: relative;
        width: 100%;
        height: 200px;
        right: 0;
        bottom: 0;
        margin-top: 16px;
    }

    .visit {
        padding: 80px 0;
    }

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

    .contact {
        padding: 80px 0;
    }

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

    .contact__form-wrap {
        padding: 32px 24px;
    }

    .contact__form-row {
        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;
    }

    .nav__inner {
        padding: 0 16px;
    }

    .about__stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about__stat {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

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

    .menu__item img {
        width: 100%;
        height: 180px;
    }

    .menu__item-info {
        padding: 16px;
    }
}
