/* ============================================
   Bismillah Supermarket — Styles
   Color Palette: Charcoal (#2C2C2C) + Coral (#E07A5F)
   Fonts: Playfair Display + Nunito
   ============================================ */

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

:root {
    --charcoal: #2C2C2C;
    --charcoal-light: #3D3D3D;
    --charcoal-dark: #1A1A1A;
    --coral: #E07A5F;
    --coral-light: #E8977D;
    --coral-dark: #C4644A;
    --coral-pale: #FDF0EC;
    --coral-ghost: #FEF6F3;
    --cream: #FDF8F5;
    --warm-white: #FFFAF8;
    --sand: #F5EDE8;
    --sand-light: #FAF5F2;
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-muted: #8A8A8A;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 44, 44, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 44, 44, 0.12);
    --shadow-coral: 0 8px 30px rgba(224, 122, 95, 0.25);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-primary);
    background: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ── Typography ── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.15;
    color: var(--charcoal);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: white;
    box-shadow: var(--shadow-coral);
}

.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(224, 122, 95, 0.35);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.9);
    color: var(--charcoal);
    border: 2px solid rgba(44, 44, 44, 0.15);
    backdrop-filter: blur(10px);
}

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

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

/* ── Section Helpers ── */
.section {
    padding: 100px 0;
}

.section__tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    background: var(--coral-pale);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

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

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

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

.text-coral {
    color: var(--coral);
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav__inner {
    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: 800;
    font-size: 1.35rem;
    color: var(--charcoal);
}

.nav__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--coral);
    border-radius: var(--radius-sm);
    color: white;
    flex-shrink: 0;
}

.nav__logo-sub {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-left: -2px;
    margin-top: 2px;
}

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

.nav__link {
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

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

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

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

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px 0;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--charcoal);
    border-radius: 4px;
    transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(255, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

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

.mobile-menu__link:hover {
    color: var(--coral);
    background: var(--coral-pale);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    background: var(--coral);
    color: white !important;
    border-radius: 50px;
    padding: 14px 36px;
}

.mobile-menu__contact {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.mobile-menu__contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--coral-ghost) 50%, var(--sand-light) 100%);
    overflow: hidden;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(224, 122, 95, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(224, 122, 95, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--coral);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.hero__badge svg {
    color: var(--coral);
}

.hero__headline {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--charcoal);
}

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

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

/* Hero Visual */
.hero__visual {
    position: relative;
    height: 520px;
}

.hero__hero-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.hero__hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.hero__hero-tag {
    display: inline-block;
    background: var(--coral);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}

/* Floating Cards */
.hero__floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero__floating-card--1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.hero__floating-card--2 {
    bottom: 140px;
    left: -30px;
    animation-delay: 1s;
}

.hero__floating-card--3 {
    bottom: 30px;
    right: -10px;
    animation-delay: 2s;
}

.float-card__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.float-card__text {
    display: flex;
    flex-direction: column;
}

.float-card__number {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.2;
}

.float-card__label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ── Products Section ── */
.products {
    background: white;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.product-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(44, 44, 44, 0.05);
}

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

.product-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--coral);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card__body {
    padding: 24px;
}

.product-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.product-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.product-card__desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── About Section ── */
.about {
    background: var(--sand-light);
}

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

.about__image-stack {
    position: relative;
    height: 580px;
}

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

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

.about__img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--sand-light);
    height: 200px;
    width: 280px;
}

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

.about__accent-card {
    position: absolute;
    top: -20px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--coral);
    color: white;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-coral);
    font-weight: 700;
    font-size: 0.9rem;
}

.about__text-col {
    max-width: 500px;
}

.about__body-text {
    font-size: 1.02rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.value-item__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral-pale);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Community Section ── */
.community {
    background: white;
}

.community__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.community-card {
    background: var(--sand-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.community-card:hover {
    background: white;
    border-color: rgba(224, 122, 95, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.community-card__emoji {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.community-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.community-card__text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Visit Section ── */
.visit {
    background: var(--charcoal);
    color: white;
}

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

.visit__info .section__tag {
    background: rgba(224, 122, 95, 0.2);
}

.visit__info .section__title {
    color: white;
}

.visit__details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.visit__detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 122, 95, 0.15);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.visit__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--coral-light);
    margin-bottom: 2px;
}

.visit__detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    line-height: 1.5;
}

.visit__link {
    color: var(--coral-light) !important;
    transition: color var(--transition);
}

.visit__link:hover {
    color: var(--coral);
    text-decoration: underline;
}

/* Form */
.visit__form-col {
    position: relative;
}

.visit__form-card {
    background: var(--charcoal-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.visit__form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.visit__form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--coral);
    background: rgba(224, 122, 95, 0.08);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 32px 20px;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 106, 79, 0.15);
    border-radius: 50%;
    margin: 0 auto 16px;
}

.form-success__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
}

.form-success__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Map Banner ── */
.map-banner {
    background: var(--coral);
    padding: 60px 0;
}

.map-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.map-banner__content {
    flex: 1;
}

.map-banner__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: white;
    margin-bottom: 12px;
}

.map-banner__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 24px;
}

.map-banner__btn {
    background: white;
    color: var(--coral);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-banner__btn:hover {
    background: var(--charcoal);
    color: white;
    transform: translateY(-2px);
}

.map-banner__visual {
    position: relative;
    flex-shrink: 0;
}

.map-banner__pin {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    animation: pinBounce 2s ease-in-out infinite;
}

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

/* ── Footer ── */
.footer {
    background: var(--charcoal-dark);
    color: white;
    padding: 64px 0 0;
}

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

.footer__tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 360px;
}

.footer__logo {
    color: white;
}

.footer__links {
    display: flex;
    gap: 48px;
}

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

.footer__link-heading {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral-light);
    margin-bottom: 4px;
}

.footer__link {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
    line-height: 1.5;
}

.footer__link:hover {
    color: var(--coral-light);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer__bottom p:last-child {
    color: var(--coral-light);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__container {
        gap: 40px;
    }

    .hero__visual {
        height: 420px;
    }

    .about__inner {
        gap: 48px;
    }

    .about__image-stack {
        height: 460px;
    }

    .visit__inner {
        gap: 48px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        height: 380px;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero__floating-card--1 {
        right: 0;
    }

    .hero__floating-card--2 {
        left: 0;
    }

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

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

    .about__image-stack {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about__text-col {
        max-width: 100%;
    }

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

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

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

    .map-banner__text {
        margin-left: auto;
        margin-right: auto;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__links {
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 72px 0;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__floating-card {
        display: none;
    }

    .hero__floating-card--1,
    .hero__floating-card--2,
    .hero__floating-card--3 {
        display: flex;
    }

    .hero__floating-card--1 {
        top: 10px;
        right: 10px;
    }

    .hero__floating-card--2 {
        bottom: 100px;
        left: 10px;
    }

    .hero__floating-card--3 {
        bottom: 10px;
        right: 10px;
    }

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

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

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

    .about__image-stack {
        height: 320px;
    }

    .about__img-main {
        height: 320px;
    }

    .about__img-secondary {
        width: 200px;
        height: 150px;
    }

    .about__accent-card {
        right: 20px;
        padding: 14px 18px;
        font-size: 0.8rem;
    }

    .visit__form-card {
        padding: 28px 20px;
    }

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

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

    .map-banner {
        padding: 48px 0;
    }
}

@media (max-width: 380px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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