/* ============================================
   Delightful Deli & Sweet Shop
   Clean Minimalist — Charcoal + Coral
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --charcoal-900: #1a1a1a;
    --charcoal-800: #2d2d2d;
    --charcoal-700: #3d3d3d;
    --charcoal-600: #555555;
    --charcoal-500: #6e6e6e;
    --charcoal-400: #8a8a8a;
    --charcoal-300: #a8a8a8;
    --charcoal-200: #d1d1d1;
    --charcoal-100: #ebebeb;
    --charcoal-50: #f5f5f5;

    --coral-600: #c45a3c;
    --coral-500: #E07A5F;
    --coral-400: #e8957e;
    --coral-300: #f0b5a3;
    --coral-200: #f7d0c4;
    --coral-100: #fce8e2;
    --coral-50: #fdf4f1;

    --white: #ffffff;
    --off-white: #faf9f7;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--charcoal-800);
    background: var(--off-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

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;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--charcoal-100);
    transition: box-shadow 0.4s var(--ease-smooth);
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(26, 26, 26, 0.06);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--coral-500);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--coral-500);
    border-radius: 50%;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--charcoal-800);
    letter-spacing: 0.01em;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-600);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral-500);
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--charcoal-800);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    color: var(--coral-500) !important;
    border: 1px solid var(--coral-500);
    padding: 8px 20px;
    border-radius: 100px;
    transition: background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--coral-500);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--charcoal-700);
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-smooth);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    background: var(--off-white);
    overflow: hidden;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 72px);
}

.hero-content {
    padding-right: 16px;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--coral-500);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--charcoal-900);
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}

.accent-word {
    color: var(--coral-500);
    font-style: italic;
}

.hero-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal-600);
    max-width: 440px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--charcoal-500);
    letter-spacing: 0.02em;
}

.hero-meta-item svg {
    color: var(--coral-400);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 680px;
}

.hero-img-hero {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

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

.hero-img-float {
    position: absolute;
    bottom: -20px;
    left: -40px;
    width: 260px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.12);
    border: 4px solid var(--off-white);
}

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

.float-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--coral-500);
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.float-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-img-accent {
    position: absolute;
    top: 40px;
    right: -30px;
    width: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--off-white);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.1);
}

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

/* Hero Line */
.hero-line {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-line hr {
    border: none;
    height: 1px;
    background: var(--charcoal-200);
}

/* Hero Strip */
.hero-strip {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 60px;
    overflow: hidden;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: nowrap;
    overflow: hidden;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal-400);
}

.strip-divider {
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: var(--coral-300);
    border-radius: 50%;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
    border: 1.5px solid transparent;
}

.btn-primary {
    background: var(--coral-500);
    color: var(--white);
    border-color: var(--coral-500);
}

.btn-primary:hover {
    background: var(--coral-600);
    border-color: var(--coral-600);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal-700);
    border-color: var(--charcoal-200);
}

.btn-ghost:hover {
    border-color: var(--charcoal-700);
    color: var(--charcoal-900);
}

.btn-large {
    padding: 16px 32px;
    font-size: 14px;
}

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

/* ============================================
   SECTION COMMON
   ============================================ */
.section-eyebrow {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--charcoal-900);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-header {
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 40px;
    background: var(--off-white);
    border-radius: 4px;
    border: 1px solid var(--charcoal-100);
    transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.feature-card:hover {
    border-color: var(--coral-200);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.06);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--charcoal-200);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--coral-500);
    transition: border-color 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
}

.feature-card:hover .feature-icon {
    border-color: var(--coral-500);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--charcoal-900);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--charcoal-600);
    margin-bottom: 24px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral-500);
    transition: gap 0.3s var(--ease-out);
}

.feature-link:hover {
    gap: 10px;
}

.feature-link svg {
    transition: transform 0.3s var(--ease-out);
}

.feature-link:hover svg {
    transform: translateX(2px);
}

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

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 4px;
    overflow: hidden;
}

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

.about-img-side {
    position: absolute;
    bottom: -32px;
    right: -24px;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    border: 4px solid var(--off-white);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.1);
}

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

.about-experience {
    position: absolute;
    top: -24px;
    right: 40px;
    background: var(--coral-500);
    color: var(--white);
    padding: 20px 24px;
    border-radius: 4px;
    text-align: center;
}

.about-exp-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 4px;
}

.about-exp-text {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 400;
}

.about-content {
    padding-left: 8px;
}

.about-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal-600);
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--charcoal-200);
}

.about-sig-label {
    display: block;
    font-size: 12px;
    color: var(--charcoal-400);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.about-sig-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal-800);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-header {
    margin-bottom: 64px;
}

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

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: span 2;
}

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

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.6));
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* ============================================
   CTA / VISIT
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--charcoal-900);
    color: var(--white);
}

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

.cta-title {
    color: var(--white);
}

.cta-body {
    font-size: 17px;
    line-height: 1.7;
    color: var(--charcoal-300);
    max-width: 400px;
}

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

.cta-detail {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--charcoal-700);
}

.cta-detail:last-of-type {
    border-bottom: none;
}

.cta-detail-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral-400);
    margin-bottom: 8px;
}

.cta-detail-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
}

.cta-phone, .cta-email {
    color: var(--white);
    transition: color 0.3s var(--ease-smooth);
}

.cta-phone:hover, .cta-email:hover {
    color: var(--coral-400);
}

.cta .btn-primary {
    margin-top: 8px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

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

.contact-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal-600);
    margin-bottom: 36px;
}

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

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--charcoal-700);
    transition: color 0.3s var(--ease-smooth);
}

.contact-direct-item:hover {
    color: var(--coral-500);
}

.contact-direct-item svg {
    color: var(--coral-500);
    flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 4px;
    padding: 40px;
    border: 1px solid var(--charcoal-100);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-600);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    color: var(--charcoal-800);
    background: var(--off-white);
    border: 1px solid var(--charcoal-200);
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
    -webkit-appearance: none;
}

.form-input::placeholder {
    color: var(--charcoal-400);
}

.form-input:focus {
    border-color: var(--coral-500);
    box-shadow: 0 0 0 3px var(--coral-100);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%236e6e6e' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
}

.form-success svg {
    color: var(--coral-500);
    margin-bottom: 20px;
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--charcoal-900);
    margin-bottom: 8px;
}

.form-success-text {
    font-size: 15px;
    color: var(--charcoal-600);
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0 32px;
    background: var(--charcoal-900);
    color: var(--charcoal-300);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--charcoal-700);
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--coral-500);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--coral-500);
    border-radius: 50%;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 13px;
    color: var(--charcoal-400);
    letter-spacing: 0.04em;
    transition: color 0.3s var(--ease-smooth);
}

.footer-links a:hover {
    color: var(--coral-400);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 13px;
    color: var(--charcoal-500);
}

.footer-address {
    font-size: 13px;
    color: var(--charcoal-500);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-content {
        padding-right: 0;
        order: 1;
    }

    .hero-visual {
        height: 500px;
        order: 2;
    }

    .hero-img-float {
        left: -16px;
        width: 200px;
    }

    .hero-img-accent {
        right: -16px;
        width: 120px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-content {
        padding-left: 0;
    }

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

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

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

    .gallery-item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 249, 247, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--charcoal-100);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-smooth);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-img-float {
        width: 160px;
        left: -8px;
        bottom: -12px;
    }

    .hero-img-accent {
        width: 100px;
        right: -8px;
        top: 20px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 12px;
    }

    .strip-item {
        font-size: 11px;
        gap: 16px;
    }

    .feature-card {
        padding: 28px;
    }

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

    .gallery-item--wide {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .hero-visual {
        height: 320px;
    }

    .hero-img-float {
        display: none;
    }

    .hero-img-accent {
        display: none;
    }

    .about-img-side {
        right: -12px;
        bottom: -20px;
    }

    .about-experience {
        right: 20px;
        top: -16px;
    }
}
