/* ============================================
   NUR CAFE — Styles
   Bold editorial · Emerald & Cream
   ============================================ */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1a2e26;
    background-color: #faf8f4;
    -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;
}

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

em {
    font-style: italic;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--primary {
    background-color: #064e3b;
    color: #faf8f4;
    border-radius: 0;
}

.btn--primary:hover {
    background-color: #0a6b4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 78, 59, 0.25);
}

.btn--outline {
    background-color: transparent;
    color: #064e3b;
    border: 1.5px solid #064e3b;
    border-radius: 0;
}

.btn--outline:hover {
    background-color: #064e3b;
    color: #faf8f4;
    transform: translateY(-2px);
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(6, 78, 59, 0.08);
}

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

.nav__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #064e3b;
}

.nav__logo-accent {
    font-weight: 400;
    color: #1a2e26;
}

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

.nav__link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a2e26;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #064e3b;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__link:hover {
    color: #064e3b;
}

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

.nav__link--cta {
    background-color: #064e3b;
    color: #faf8f4 !important;
    padding: 10px 22px;
    letter-spacing: 0.06em;
}

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

.nav__link--cta:hover {
    background-color: #0a6b4f;
    color: #faf8f4 !important;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: #064e3b;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
}

.mobile-menu__link {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #1a2e26;
    transition: color 0.3s ease;
}

.mobile-menu__link:hover {
    color: #064e3b;
}

.mobile-menu__link--cta {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1rem;
    padding: 14px 32px;
    background-color: #064e3b;
    color: #faf8f4;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 0 0;
    background-color: #faf8f4;
    position: relative;
    overflow: hidden;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    color: #064e3b;
    margin-bottom: 1.75rem;
    line-height: 1.05;
}

.hero__headline em {
    color: #3d8b6a;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #3a5a4a;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

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

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

.hero__detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #3a5a4a;
}

.hero__detail-icon {
    color: #064e3b;
    flex-shrink: 0;
}

.hero__image-wrapper {
    position: relative;
    overflow: hidden;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background-color: #064e3b;
    z-index: -1;
    opacity: 0.08;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #064e3b;
    opacity: 0.5;
    animation: heroScroll 2s ease-in-out infinite;
}

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

/* --- Marquee --- */
.marquee {
    background-color: #064e3b;
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 30s linear infinite;
}

.marquee__item {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #faf8f4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee__dot {
    color: #3d8b6a;
    flex-shrink: 0;
    font-size: 0.5rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- About --- */
.about {
    padding: 8rem 2rem;
    background-color: #faf8f4;
}

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

.about__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 3rem;
}

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

.about__headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #064e3b;
    margin-bottom: 2rem;
}

.about__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #3a5a4a;
    margin-bottom: 1.5rem;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(6, 78, 59, 0.12);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about__stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #064e3b;
    line-height: 1;
}

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

.about__stat-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(6, 78, 59, 0.15);
}

.about__image-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.about__image-main {
    overflow: hidden;
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-secondary {
    overflow: hidden;
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Menu --- */
.menu {
    padding: 8rem 2rem;
    background-color: #064e3b;
    color: #faf8f4;
}

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

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

.menu__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3d8b6a;
    margin-bottom: 1.25rem;
}

.menu__headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #faf8f4;
    margin-bottom: 1.25rem;
}

.menu__subheadline {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(250, 248, 244, 0.65);
    max-width: 560px;
    margin: 0 auto;
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 248, 244, 0.15);
}

.menu__tab {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.5);
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem 2rem;
    position: relative;
    transition: color 0.3s ease;
}

.menu__tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #faf8f4;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu__tab:hover {
    color: rgba(250, 248, 244, 0.8);
}

.menu__tab.active {
    color: #faf8f4;
}

.menu__tab.active::after {
    transform: scaleX(1);
}

.menu__panel {
    display: none;
}

.menu__panel.active {
    display: block;
    animation: menuFadeIn 0.4s ease;
}

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

.menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.menu__category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #faf8f4;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(250, 248, 244, 0.12);
}

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

.menu__item {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(250, 248, 244, 0.06);
}

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

.menu__item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.menu__item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #faf8f4;
}

.menu__item-desc {
    font-size: 0.875rem;
    color: rgba(250, 248, 244, 0.5);
    line-height: 1.5;
}

.menu__note {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.4);
    margin-top: 3rem;
    font-style: italic;
}

/* --- Gallery --- */
.gallery {
    padding: 8rem 2rem;
    background-color: #faf8f4;
}

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

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

.gallery__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 1.25rem;
}

.gallery__headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #064e3b;
}

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

.gallery__item {
    overflow: hidden;
}

.gallery__item--large {
    grid-row: span 2;
}

.gallery__item--wide {
    grid-column: span 2;
}

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

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

/* --- Visit --- */
.visit {
    padding: 8rem 2rem;
    background-color: #f3ede4;
}

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

.visit__content {
    margin-bottom: 4rem;
}

.visit__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 1.25rem;
}

.visit__headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #064e3b;
}

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

.visit__card {
    background-color: #faf8f4;
    padding: 2.5rem;
    border: 1px solid rgba(6, 78, 59, 0.08);
}

.visit__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: #064e3b;
    margin-bottom: 1.5rem;
}

.visit__hours {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.visit__hour {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
}

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

.visit__day {
    font-size: 0.9375rem;
    color: #1a2e26;
    font-weight: 500;
}

.visit__time {
    font-size: 0.9375rem;
    color: #3a5a4a;
}

.visit__address {
    font-size: 1rem;
    line-height: 1.8;
    color: #1a2e26;
    margin-bottom: 1.5rem;
}

.visit__map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #064e3b;
    border-bottom: 1px solid #064e3b;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.visit__map-btn:hover {
    color: #3d8b6a;
    border-color: #3d8b6a;
}

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

.visit__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #1a2e26;
    transition: color 0.3s ease;
}

.visit__contact-link:hover {
    color: #064e3b;
}

.visit__contact-link svg {
    color: #064e3b;
    flex-shrink: 0;
}

/* --- Contact --- */
.contact {
    padding: 8rem 2rem;
    background-color: #faf8f4;
}

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

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

.contact__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #064e3b;
    margin-bottom: 1.25rem;
}

.contact__headline {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #064e3b;
    margin-bottom: 1.25rem;
}

.contact__body {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #3a5a4a;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.contact__input {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a2e26;
    background-color: #fff;
    border: 1.5px solid rgba(6, 78, 59, 0.15);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.contact__input:focus,
.contact__select:focus {
    border-color: #064e3b;
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.08);
}

.contact__input::placeholder {
    color: #a0b4aa;
}

.contact__select {
    cursor: pointer;
    background-color: #fff;
}

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

.contact__success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background-color: rgba(6, 78, 59, 0.06);
    border: 1px solid rgba(6, 78, 59, 0.15);
    font-size: 0.9375rem;
    color: #064e3b;
}

.contact__success svg {
    flex-shrink: 0;
    color: #064e3b;
}

/* --- Footer --- */
.footer {
    background-color: #064e3b;
    color: #faf8f4;
    padding: 4rem 2rem 2rem;
}

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

.footer__top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 248, 244, 0.1);
}

.footer__logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #faf8f4;
    display: block;
    margin-bottom: 0.75rem;
}

.footer__logo-accent {
    font-weight: 400;
    color: rgba(250, 248, 244, 0.7);
}

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

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

.footer__nav a {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.6);
    transition: color 0.3s ease;
}

.footer__nav a:hover {
    color: #faf8f4;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copy {
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.4);
}

.footer__address {
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.4);
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 3rem;
    }

    .about__grid {
        gap: 3rem;
    }

    .menu__grid {
        gap: 2.5rem;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding-top: 72px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 1.5rem 1.5rem 4rem;
    }

    .hero__image-wrapper {
        max-height: 50vh;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        text-align: center;
    }

    .about {
        padding: 5rem 1.5rem;
    }

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

    .about__stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .about__stat-divider {
        display: none;
    }

    .menu {
        padding: 5rem 1.5rem;
    }

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

    .menu__tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .menu__tab {
        padding: 0.875rem 1.25rem;
        white-space: nowrap;
    }

    .gallery {
        padding: 5rem 1.5rem;
    }

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-row: auto;
        grid-column: auto;
    }

    .visit {
        padding: 5rem 1.5rem;
    }

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

    .contact {
        padding: 5rem 1.5rem;
    }

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

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

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

    .footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

@media (max-width: 480px) {
    .hero__headline {
        font-size: 2.75rem;
    }

    .hero__subheadline {
        font-size: 1rem;
    }

    .about__headline,
    .menu__headline,
    .gallery__headline,
    .visit__headline,
    .contact__headline {
        font-size: 2.25rem;
    }

    .nav__inner {
        padding: 0 1.25rem;
    }
}
