/* ============================================
   LINCOLN DRIVE DELICATESSEN — STYLES
   ============================================ */

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

:root {
    --green-900: #0D2818;
    --green-800: #1B4332;
    --green-700: #2D6A4F;
    --green-600: #40916C;
    --green-500: #52B788;
    --green-100: #D8F3DC;
    --green-50:  #F0FFF4;
    
    --cream-50:  #FAF8F3;
    --cream-100: #F5F0E8;
    --cream-200: #EDE5D5;
    --cream-300: #E0D5C0;
    
    --neutral-900: #1A1A1A;
    --neutral-800: #2D2D2D;
    --neutral-700: #404040;
    --neutral-600: #555555;
    --neutral-500: #707070;
    --neutral-400: #909090;
    --neutral-300: #B0B0B0;
    --neutral-200: #D0D0D0;
    --neutral-100: #E8E8E8;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 4px 16px rgba(27, 67, 50, 0.10);
    --shadow-lg: 0 8px 32px rgba(27, 67, 50, 0.12);
    --shadow-xl: 0 16px 48px rgba(27, 67, 50, 0.14);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background-color: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* --- Utility --- */
.section__eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-700);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section__eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-600);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
    margin-bottom: 1.25rem;
}

.section__title--light {
    color: #fff;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--green-800);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--green-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--green-800);
    border: 1.5px solid var(--green-800);
}

.btn--outline:hover {
    background: var(--green-800);
    color: #fff;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

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

.nav__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--green-800);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.nav__logo-icon {
    display: flex;
    align-items: center;
}

.nav__logo-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--green-600);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-700);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-700);
    transition: var(--transition);
}

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

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

.nav__link--cta {
    background: var(--green-800);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
}

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

.nav__link--cta:hover {
    background: var(--green-700);
    color: #fff;
}

.nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    color: var(--green-800);
    transition: var(--transition);
}

.nav__toggle:hover {
    background: var(--green-50);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    background: var(--green-900);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    width: 100%;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-500);
    margin-bottom: 1.5rem;
}

.hero__eyebrow-line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--green-600);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-400, #74C69D);
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero__image-group {
    position: relative;
}

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

.hero__image--main {
    width: 100%;
    aspect-ratio: 600 / 750;
}

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

.hero__image--accent {
    position: absolute;
    bottom: -2rem;
    left: -3rem;
    width: 55%;
    aspect-ratio: 400 / 300;
    border: 4px solid var(--green-900);
    z-index: 2;
}

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

.hero__image--badge {
    position: absolute;
    top: 1.5rem;
    right: -1.5rem;
    z-index: 3;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cream-50);
    color: var(--green-800);
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.hero__badge svg {
    color: #F59E0B;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* --- About --- */
.about {
    padding: 7rem 2rem;
    background: var(--cream-50);
}

.about__container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.about__image-wrapper {
    position: relative;
}

.about__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__image-accent {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--green-800);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.15;
}

.about__content {
    padding: 1rem 0;
}

.about__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: 1.25rem;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.about__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    color: var(--green-700);
    flex-shrink: 0;
}

/* --- Menu --- */
.menu {
    padding: 7rem 2rem;
    background: var(--green-800);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-600), var(--green-500), var(--green-600));
}

.menu__container {
    max-width: 1280px;
    margin: 0 auto;
}

.menu__header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu__header .section__eyebrow {
    color: var(--green-400, #74C69D);
    justify-content: center;
}

.menu__header .section__eyebrow::before {
    background: var(--green-500);
}

.menu__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto;
}

.menu__categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu__category {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
}

.menu__category:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.menu__category-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--green-700);
    border-radius: var(--radius-sm);
    color: var(--green-100);
    margin-bottom: 1.25rem;
}

.menu__category-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.menu__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu__list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu__list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu__item-name {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.9375rem;
}

.menu__item-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.menu__note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.menu__note svg {
    color: var(--green-400, #74C69D);
    flex-shrink: 0;
}

/* --- Specialties --- */
.specialties {
    padding: 7rem 2rem;
    background: var(--cream-100);
}

.specialties__container {
    max-width: 1280px;
    margin: 0 auto;
}

.specialties__header {
    text-align: center;
    margin-bottom: 4rem;
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.specialty-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--cream-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green-700);
    transform: scaleX(0);
    transition: var(--transition);
}

.specialty-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.specialty-card:hover::before {
    transform: scaleX(1);
}

.specialty-card__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--green-50);
    line-height: 1;
    margin-bottom: 1rem;
}

.specialty-card__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.specialty-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--neutral-600);
}

/* --- Gallery --- */
.gallery {
    padding: 7rem 2rem;
    background: var(--green-900);
}

.gallery__container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery__header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery__header .section__eyebrow {
    color: var(--green-400, #74C69D);
    justify-content: center;
}

.gallery__header .section__eyebrow::before {
    background: var(--green-500);
}

.gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

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

.gallery__item--wide {
    grid-column: 1 / -1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 40, 24, 0.3), transparent 50%);
    pointer-events: none;
}

/* --- CTA --- */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-800) 50%, var(--green-900) 100%);
    text-align: center;
}

.cta__container {
    max-width: 720px;
    margin: 0 auto;
}

.cta__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta__actions .btn--outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cta__actions .btn--outline:hover {
    background: #fff;
    color: var(--green-800);
    border-color: #fff;
}

/* --- Contact --- */
.contact {
    padding: 7rem 2rem;
    background: var(--cream-50);
}

.contact__container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact__detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.contact__detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    color: var(--green-700);
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 0.25rem;
}

.contact__detail-value {
    font-size: 1rem;
    color: var(--neutral-800);
    line-height: 1.6;
}

.contact__detail-link {
    font-size: 1rem;
    color: var(--green-700);
    font-weight: 500;
    transition: var(--transition);
}

.contact__detail-link:hover {
    color: var(--green-600);
    text-decoration: underline;
}

.contact__map {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact__form-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--cream-200);
    box-shadow: var(--shadow-md);
}

.contact__form-header {
    margin-bottom: 2rem;
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.contact__form-subtitle {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

.form__group {
    margin-bottom: 1.25rem;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--neutral-600);
    margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--neutral-900);
    background: var(--cream-50);
    transition: var(--transition);
    outline: none;
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--green-600);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--neutral-400);
}

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

.form__success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    color: var(--green-800);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: 1rem;
}

.form__success svg {
    color: var(--green-600);
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: var(--green-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 0;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.footer__nav-title,
.footer__info h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.25rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer__links a:hover {
    color: #fff;
}

.footer__address,
.footer__info p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer__phone a {
    color: var(--green-400, #74C69D);
    transition: var(--transition);
}

.footer__phone a:hover {
    color: #fff;
}

.footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
}

.footer__copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

/* Mobile reveal fallback: always visible */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr 0.7fr;
        gap: 2.5rem;
    }

    .hero__image--accent {
        left: -1.5rem;
        bottom: -1.25rem;
    }

    .about__grid {
        gap: 3rem;
    }

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

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

    .contact__grid {
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 248, 243, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(27, 67, 50, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .nav__menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__image-group {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__image--accent {
        width: 50%;
        left: -1rem;
        bottom: -1rem;
    }

    .hero__image--badge {
        right: -0.5rem;
        top: 1rem;
    }

    .hero__stats {
        gap: 1.5rem;
    }

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

    .about__image-wrapper {
        max-width: 500px;
    }

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

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

    .gallery__item--wide {
        grid-column: auto;
    }

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

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

    .cta__actions {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .hero__container {
        padding: 5rem 1.25rem 3rem;
    }

    .hero__actions {
        flex-direction: column;
    }

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

    .hero__image--accent {
        display: none;
    }

    .nav__container {
        padding: 0 1.25rem;
    }

    .about,
    .menu,
    .specialties,
    .gallery,
    .cta,
    .contact {
        padding: 4rem 1.25rem;
    }

    .menu__category {
        padding: 1.5rem;
    }

    .contact__form-wrapper {
        padding: 1.5rem;
    }
}
