:root {
    --dark: #141414ff;
    --light: #fffdedff;
    --primary: #999;
    --accent: rgb(255, 0, 0);
    --font1: 'ubuntu', sans-serif;
    --font2: 'Inconsolata', sans-serif;
    --spacing-sm: 15px;
    --spacing-md: 30px;
    --spacing-lg: 60px;
}

/* reset */
* {
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: var(--dark);
}

body {
    font-family: var(--font2);
    background-color: var(--light);
    color: var(--dark);
}

html {
    scroll-behavior: smooth;
}

/* tipografia */
.leading {
    font-size: 1.4em;
}

h1 {
    font-weight: 800;
    font-size: 32px;
}

h2 {
    font-size: 18px;
    padding-bottom: var(--spacing-md);
}

h3 {
    font-weight: 300;
    font-size: 13px;
}

h1,
h2,
h3 {
    font-family: var(--font1);
    color: var(--dark);
}

p {
    font-family: var(--font2);
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark);
    text-align: justify;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Header*/
.header {
    padding: var(--spacing-md);
    height: 150px;
    position: relative;
    overflow: hidden;
}

.top-bar {
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 10;
}

.top-nav {

    gap: 30px;
}

.top-nav a {
    font-weight: bold;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.top-nav a:hover {
    opacity: 0.7;
}

.left-menu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

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

.menu-stack a {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.menu-stack a:hover {
    transform: translateX(5px);
    opacity: 0.8;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hamburger {
    display: none;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    z-index: 15;
    transition: left 0.3s ease;
    padding-top: 80px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.mobile-menu a {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    justify-content: center;
}

.logo img {
    max-width: 200px;
}

.cover {
    position: relative;
    height: 100vh;
    padding: var(--spacing-sm);
}

.cover h1 {
    color: var(--accent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 10rem;
}

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

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

.cta {
    position: absolute;
    text-decoration: underline;
    text-underline-offset: 3px;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta p {
    font-size: 1.3rem;
}

.about {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
}

.titolo-about {
    grid-column: 1;
    grid-row: 1;
}

.about-text {
    grid-column: 3/5;
    grid-row: 2/2;
}

.foto-1 img,
.foto-2 img,
.foto-3 img,
.foto-4 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.foto-1 {
    grid-column: 1/2;
    grid-row: 2/2;
}

.foto-2 {
    grid-column: 6/7;
    grid-row: 2/2;
}

.foto-3 {
    grid-column: 6/7;
    grid-row: 1/2;
}

.foto-4 {
    grid-column: 5/5;
    grid-row: 1/2;
}

.carousel-section {
    max-width: 100%;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-sm);
}

.carousel-title {
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.carousel-container {
    display: flex;
    gap: var(--spacing-sm);
}

.carousel-item {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: filter 0.3s ease;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    z-index: 1;
}

.carousel-item:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

.carousel-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 2;
    text-align: center;
    padding: 20px;
    background: linear-gradient(transparent, var(--dark));
    margin: 0;
    font-weight: 700;
}

.carousel-item:hover .carousel-text {
    opacity: 1;
    transform: translateY(0);
}

.menu {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-sm);
    align-items: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
}

.menu-text {
    grid-column: 3/5;
    grid-row: 2/2;
}

.cta-menu {
    margin-top: var(--spacing-sm);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.foto-5 img,
.foto-6 img,
.foto-7 img,
.foto-8 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.foto-5 {
    grid-column: 1/2;
    grid-row: 2/2;
}

.foto-6 {
    grid-column: 6/7;
    grid-row: 2/2;
}

.foto-7 {
    grid-column: 1/2;
    grid-row: 1/2;
}

.foto-8 {
    grid-column: 2/2;
    grid-row: 1/2;
}

.titolo-menu {
    grid-column: 6/7;
    grid-row: 1/2;
}

.newsletter-section {
    padding: var(--spacing-lg);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.newsletter-content {
    text-align: center;
    width: 100%;
}

.newsletter-title {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    line-height: 0.9;
}

.newsletter-cta {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    line-height: 1;
}

.social-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.social-link:hover {
    color: var(--accent);
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.email-input {
    flex: 1;
    padding: var(--spacing-sm);
    font-size: 1.2rem;
    background: var(--light);
    color: var(--accent);
    font-weight: 500;
    outline: none;
}

.email-input::placeholder {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subscribe-btn {
    padding: var(--spacing-sm);
    background: var(--primary);
    color: var(--light);
    border: none;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    color: var(--light);
    background: var(--dark);
}


/* Privacy Checkbox Container */
.privacy-container {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    max-width: 500px;
    text-align: left;
}

.privacy-checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #555;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.privacy-checkbox:checked {
    background: #fff;
    border-color: #fff;
}

.privacy-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    font-size: 14px;
    color: #2c2c2c;
    font-weight: bold;
}

.privacy-label {
    display: flex;
    justify-content: center;
    font-size: 12px;
    line-height: 1.4;
    color: var(--dark);
    cursor: pointer;
    margin-bottom: var(--spacing-md);
}

.privacy-link {
    color: var(--dark);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--accent);
}

.footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.side-text {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    white-space: nowrap;
}

.success-message {
    display: none;
    background: var(--light);
    color: var(--dark);
    padding: var(--spacing-md);
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.success-message.show {
    display: block;
}

/* -------------------------------------------------------------------------------- */
/* ! menu */
/* -------------------------------------------------------------------------------- */
.menu-container {
    max-width: 800px;
    margin: 20px auto;
    padding: var(--spacing-md);
}

.menu-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin: 30px 0 20px 0;
    color: var(--accent);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    align-items: start;
}

.filter-section {
    margin: 20px 0;
}

.special-coffe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: start;
}

.drinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: start;
}

.menu-item {
    margin-bottom: 20px;
    width: 100%;
}

.item-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.item-description {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.item-price {
    font-weight: bold;
    font-size: 16px;
    color: var(--accent);
}

.milk-options {
    font-size: 12px;
    color: var(--primary);
    margin-top: 5px;
}

.special-note {
    padding: 15px;
    margin: 20px 0;
    border-left: 4px solid var(--accent);
    font-style: italic;
    font-size: 14px;
}

.food-section {
    margin-top: var(--spacing-md);
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.food-item {
    align-items: center;
    margin-bottom: 10px;
}

/* -------------------------------------------------------------------------------- */
/* ! about */
/* -------------------------------------------------------------------------------- */
.about-container {
    padding: var(--spacing-md);
}

.about-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 30px;
}

.team-foto {
    grid-column: 1;
}

.middle-section {
    grid-column: 2;
}

.team-foto img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.text-left {
    grid-column: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 15px 0;
}

.middle-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.right-section {
    grid-column: 4;
}

.interior-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.text-right p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.last-section {
    grid-column: 1 / 3;
    grid-row: 2;
    margin-top: var(--spacing-lg);
}

.last-section img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.last-text {
    font-size: 14px;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .header {
        padding: var(--spacing-sm);
        height: 80px;
    }

    .left-menu {
        display: none;
    }

    .hamburger {
        display: flex;
        background-color: var(--dark);
    }

    .hamburger span {
        background-color: var(--light);
    }

    .mobile-menu {
        display: block;
        background-color: var(--dark);
    }

    .mobile-menu a {
        color: var(--light);
    }

    .menu-stack a,
    .top-nav a {
        font-size: 12px;
    }

    .logo-container {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
    }

    .logo img {
        max-width: 90px;
    }

    .cover {
        height: 70vh;
        padding: var(--spacing-sm);
    }

    .cover h1 {
        font-size: 3rem;
        text-align: center;
    }

    .cta {
        top: 85%;
        text-align: center;
    }

    .about {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
        padding: var(--spacing-sm);
    }

    .about-text p {
        order: 1;
        font-size: 0.7rem;
    }

    .about-text {
        grid-column: 2/6;
        grid-row: 2/2;
    }

    .foto-1,
    .foto-2,
    .foto-3,
    .foto-4 {
        order: 2;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .foto-1 img,
    .foto-2 img,
    .foto-3 img,
    .foto-4 img {
        width: 100%;
        height: 200px;
    }

    .carousel-section {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .carousel-title {
        margin-bottom: 2rem;
        font-size: 1.8rem;
    }

    .carousel-container {
        gap: var(--spacing-sm);
    }

    .carousel-item {
        height: 250px;
        overflow: hidden;
    }

    .carousel-item:active::before {
        background: rgba(0, 0, 0, 0.1);
    }

    .carousel-item:active .carousel-text {
        opacity: 1;
        transform: translateY(0);
    }

    .carousel-text {
        opacity: 1;
        transform: translateY(0);
        font-size: 14px;
        padding: 15px;
    }

    .menu {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
        padding: var(--spacing-sm);
    }

    .menu-text {
        order: 1;
        text-align: center;
    }

    .menu-text {
        grid-column: 2/6;
        grid-row: 2/2;
    }

    .titolo-menu {
        order: 0;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }

    .menu-text p {
        font-size: 0.7rem;
    }

    .newsletter-section {
        padding: var(--spacing-md);
        min-height: 80vh;
    }

    .newsletter-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .newsletter-cta {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 70%;
        max-width: 100%;
        margin: 0 auto 3rem;
    }

    .email-input {
        width: 100%;
        padding: var(--spacing-sm);
        font-size: 1rem;
        text-align: center;
        border: 2px solid var(--primary);
    }

    .subscribe-btn {
        width: 100%;
        padding: var(--spacing-sm);
        font-size: 1rem;
    }

    .social-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .social-links {
        gap: var(--spacing-sm);
    }

    .social-link {
        font-size: 1rem;
        padding: 10px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(153, 153, 153, 0.2);
    }

    .social-link::after {
        bottom: 0;
        height: 1px;
    }

    .social-link:hover::after {
        width: 100%;
        background: var(--accent);
    }

    /* Privacy Checkbox Container */
    .privacy-container {
        gap: var(--spacing-sm);
        max-width: 300px;

    }

    .privacy-label {
        font-size: 10px;
        line-height: 1.2;
    }

    .footer {
        position: relative;
        bottom: auto;
        gap: var(--spacing-sm);
        padding: var(--spacing-md) var(--spacing-sm);
        text-align: center;
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 15px;
        align-items: center;
    }

    .side-text {
        display: none;
    }

    .success-message {
        margin-top: 15px;
        padding: var(--spacing-sm);
        text-align: center;
        font-size: 0.9rem;
        border-radius: 4px;
    }

    .menu-grid,
    .special-coffe,
    .drinks,
    .food-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-container,
    .about-container {
        padding: var(--spacing-sm);
    }

    .menu-title,
    .about-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 20px;
    }

    .item-name {
        font-size: 14px;
    }

    .item-description {
        font-size: 13px;
    }

    .about-container {
        padding: var(--spacing-sm, 15px);
    }

    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        gap: 20px;
    }

    .left-section {
        grid-column: 1;
        grid-row: auto;
    }

    .middle-section {
        grid-column: 2;
        grid-row: auto;
    }

    .right-section {
        grid-column: 3;
        grid-row: auto;
    }

    .team-foto img {
        height: 250px;
    }

    .middle-section img {
        height: 300px;
    }

    .interior-photo {
        height: 250px;
    }

    .text-left,
    .text-right p,
    .last-text {
        font-size: 14px;
        line-height: 1.7;
        margin: 15px 0;
    }

    .last-section img {
        height: 200px;
    }
}

@media (max-width: 480px) {

    .header {
        height: 60px;
    }

    .logo img {
        max-width: 80px;
    }

    .cover-img img {
        height: 70vh;
    }

    .cover h1 {
        font-size: 4rem;
    }

    .cta a {
        font-size: 0.7rem;
    }

    .about {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
        padding: var(--spacing-sm);
    }

    .about-text {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }

    .foto-2 {
        grid-column: 2;
        grid-row: 3;
    }

    .foto-3 {
        grid-column: 1;
        grid-row: 3;
    }

    .foto-4 {
        grid-column: 3;
        grid-row: 3;
    }

    .foto-1 img {
        display: none;
    }

    .foto-2 img,
    .foto-3 img,
    .foto-4 img {
        width: 100%;
        height: 120px;
    }

    .menu {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
        margin-top: var(--spacing-md);
        padding: var(--spacing-sm);
    }

    .titolo-menu,
    .titolo-about {
        grid-column: 1 / -1;
        grid-row: 1;
        margin-bottom: var(--spacing-sm);
    }

    .menu-text {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }

    .foto-5 {
        grid-column: 1;
        grid-row: 3;
    }

    .foto-6 {
        grid-column: 2;
        grid-row: 3;
    }

    .foto-7,
    .foto-8 {
        display: none;
    }

    .foto-5 img,
    .foto-6 img {
        width: 100%;
        height: 120px;
    }

    .cta-menu {
        grid-row: 4;
        text-align: center;
        margin-top: var(--spacing-sm);
    }

    .foto-1,
    .foto-2,
    .foto-3,
    .foto-4,
    .foto-5,
    .foto-6,
    .foto-7,
    .foto-8 {
        max-width: 250px;
    }

    .foto-1 img,
    .foto-2 img,
    .foto-3 img,
    .foto-4 img,
    .foto-5 img,
    .foto-6 img,
    .foto-7 img,
    .foto-8 img {
        height: 150px;
    }

    .carousel-container {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 var(--spacing-sm);
    }

    .carousel-container::-webkit-scrollbar {
        display: none;
    }

    .carousel-item {
        flex: 0 0 120px;
        width: 120px;
        height: 200px;
        min-width: 120px;
    }

    .carousel-item img {
        height: 200px;
    }

    .carousel-text {
        font-size: 11px;
        padding: 8px;
    }

    .newsletter-section {
        min-height: 60vh;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-cta {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .email-input,
    .subscribe-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .social-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .social-link {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    .footer {
        font-size: 0.6rem;
        gap: 8px;
    }

    .footer-links {
        gap: 8px;
    }

    .mobile-menu {
        width: 180px;
        padding-top: 60px;
    }

    .mobile-menu nav {
        padding: 10px;
        gap: 10px;
    }

    .mobile-menu a {
        font-size: 12px;
    }

    .menu-title,
    .about-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 18px;
    }

    .about-container,
    .menu-container {
        padding: var(--spacing-xs, 10px);
    }

    .content-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    .team-foto img,
    .interior-photo {
        height: 200px;
    }

    .middle-section {
        display: none;
    }

    .left-section,
    .right-section,
    .last-section {
        grid-column: 1;
    }

    .text-left,
    .text-right p,
    .last-text {
        font-size: 14px;
        line-height: 1.6;
        margin: 10px 0;
    }

    .last-section {
        margin-top: 15px;
        gap: 10px;
    }

    .last-section img {
        height: 180px;
    }
}