/* ============================================
   Pickled Porch Cafe — Editorial Style Sheet
   Colors: Teal (#0d7377) + Slate Grey (#3d4f5f)
   Fonts: Playfair Display + Inter
============================================ */

/* --- 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: #3d4f5f;
    background-color: #faf9f7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: #1a2a35;
}

.section__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0d7377;
    margin-bottom: 1rem;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    color: #1a2a35;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn--primary {
    background-color: #0d7377;
    color: #fff;
    border: 2px solid #0d7377;
}

.btn--primary:hover {
    background-color: #095c5f;
    border-color: #095c5f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 115, 119, 0.3);
}

.btn--ghost {
    background-color: transparent;
    color: #1a2a35;
    border: 2px solid #1a2a35;
}

.btn--ghost:hover {
    background-color: #1a2a35;
    color: #fff;
    transform: translateY(-2px);
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 249, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 79, 95, 0.08);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(61, 79, 95, 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 {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #0d7377;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 4px;
}

.nav__logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2a35;
}

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

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3d4f5f;
    transition: color 0.2s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #0d7377;
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: #0d7377;
}

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

.nav__link--cta {
    background-color: #0d7377;
    color: #fff !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
}

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

.nav__link--cta:hover {
    background-color: #095c5f;
    color: #fff !important;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #1a2a35;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background-color: rgba(250, 249, 247, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: #1a2a35;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.mobile-menu__close:hover {
    background-color: rgba(13, 115, 119, 0.1);
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

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

.mobile-menu__link:hover {
    color: #0d7377;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
    background-color: #faf9f7;
}

.hero__bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(13, 115, 119, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(61, 79, 95, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__text {
    padding-right: 1rem;
}

.hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0d7377;
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: #1a2a35;
    margin-bottom: 1.5rem;
}

.hero__headline em {
    font-style: italic;
    color: #0d7377;
}

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

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

.hero__image {
    position: relative;
}

.hero__image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(26, 42, 53, 0.15);
}

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: #0d7377;
    border-radius: 4px;
    z-index: -1;
    opacity: 0.2;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5a6f7f;
    animation: float 2s ease-in-out infinite;
}

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

/* --- Divider --- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 2rem;
}

.divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(61, 79, 95, 0.2), transparent);
    max-width: 200px;
}

.divider__icon {
    color: #0d7377;
    opacity: 0.6;
}

/* --- Menu Section --- */
.menu {
    padding: 6rem 2rem;
    background-color: #faf9f7;
}

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

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

.menu__header .section__title {
    margin-left: auto;
    margin-right: auto;
}

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

.menu-card {
    background-color: #fff;
    border: 1px solid rgba(61, 79, 95, 0.08);
    border-radius: 8px;
    padding: 2.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #0d7377;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(61, 79, 95, 0.1);
    border-color: transparent;
}

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

.menu-card--accent {
    background-color: #1a2a35;
    border-color: transparent;
}

.menu-card--accent .menu-card__title,
.menu-card--accent .menu-card__desc,
.menu-card--accent .menu-card__items span:first-child {
    color: #fff;
}

.menu-card--accent .menu-card__items span:last-child {
    color: rgba(255, 255, 255, 0.6);
}

.menu-card--accent::before {
    background-color: #0d7377;
}

.menu-card__badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0d7377;
    background-color: rgba(13, 115, 119, 0.12);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
}

.menu-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 115, 119, 0.08);
    border-radius: 10px;
    color: #0d7377;
    margin-bottom: 1.5rem;
}

.menu-card--accent .menu-card__icon {
    background-color: rgba(13, 115, 119, 0.2);
}

.menu-card__title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a2a35;
}

.menu-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #5a6f7f;
    margin-bottom: 1.5rem;
}

.menu-card__items {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.menu-card__items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.875rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid rgba(61, 79, 95, 0.06);
}

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

.menu-card__items span:first-child {
    font-weight: 500;
    color: #1a2a35;
}

.menu-card__items span:last-child {
    font-size: 0.8125rem;
    color: #5a6f7f;
}

.menu__note {
    text-align: center;
    font-size: 0.875rem;
    color: #5a6f7f;
    font-style: italic;
}

/* --- About Section --- */
.about {
    padding: 6rem 2rem;
    background-color: #f3f0eb;
}

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

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

.about__image-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
}

.about__image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 42, 53, 0.12);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 6.2;
}

.about__image-secondary {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(26, 42, 53, 0.1);
    margin-top: -3rem;
    margin-left: 2rem;
    position: relative;
    z-index: 1;
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about__text-col {
    padding-top: 2rem;
}

.about__body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.about__body p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #5a6f7f;
}

.about__stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(61, 79, 95, 0.12);
}

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

.about__stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d7377;
}

.about__stat-label {
    font-size: 0.8125rem;
    color: #5a6f7f;
    letter-spacing: 0.04em;
}

/* --- Gallery Section --- */
.gallery {
    padding: 6rem 2rem;
    background-color: #faf9f7;
}

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

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

.gallery__header .section__title {
    margin-left: auto;
    margin-right: auto;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery__item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 42, 53, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item--large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery__item--large img {
    aspect-ratio: 3 / 4;
}

.gallery__item:not(.gallery__item--large) img,
.gallery__item--wide img {
    aspect-ratio: 4 / 3;
}

.gallery__item--wide {
    grid-column: 2 / 4;
}

/* --- Visit Section --- */
.visit {
    padding: 6rem 2rem;
    background-color: #1a2a35;
    color: #fff;
}

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

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

.visit__header .section__eyebrow {
    color: #5ec4c8;
}

.visit__header .section__title {
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}

.visit__subheadline {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.visit__card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.visit__card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: rgba(13, 115, 119, 0.4);
}

.visit__card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background-color: rgba(13, 115, 119, 0.15);
    border-radius: 50%;
    color: #5ec4c8;
}

.visit__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.visit__card-text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.visit__card-text a {
    color: #5ec4c8;
    transition: color 0.2s ease;
}

.visit__card-text a:hover {
    color: #fff;
}

/* --- Contact Section --- */
.contact {
    padding: 6rem 2rem;
    background-color: #faf9f7;
}

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

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

.contact__message {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #5a6f7f;
    margin-top: 1rem;
}

.contact__form {
    background-color: #fff;
    border: 1px solid rgba(61, 79, 95, 0.08);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(61, 79, 95, 0.06);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3d4f5f;
    margin-bottom: 0.5rem;
}

.form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #1a2a35;
    background-color: #faf9f7;
    border: 1.5px solid rgba(61, 79, 95, 0.12);
    border-radius: 6px;
    transition: all 0.2s ease;
    outline: none;
}

.form__input:focus {
    border-color: #0d7377;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(13, 115, 119, 0.1);
}

.form__input::placeholder {
    color: #a0b0ba;
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233d4f5f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form__success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background-color: rgba(13, 115, 119, 0.08);
    border: 1px solid rgba(13, 115, 119, 0.2);
    border-radius: 6px;
    font-size: 0.9375rem;
    color: #0d7377;
}

.form__success.visible {
    display: flex;
}

/* --- Footer --- */
.footer {
    background-color: #1a2a35;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

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

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.footer__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #0d7377;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 4px;
}

.footer__logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer__nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.footer__nav a:hover {
    color: #5ec4c8;
}

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

.footer__contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer__contact a {
    color: #5ec4c8;
    transition: color 0.2s ease;
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
}

.footer__bottom a:hover {
    color: #5ec4c8;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

    .menu__grid {
        gap: 1rem;
    }

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

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

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 5rem 1.5rem 3rem;
    }

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

    .hero__text {
        padding-right: 0;
        text-align: center;
    }

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

    .hero__actions {
        justify-content: center;
    }

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

    .hero__scroll {
        display: none;
    }

    .menu {
        padding: 4rem 1.5rem;
    }

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

    .about {
        padding: 4rem 1.5rem;
    }

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

    .about__image-secondary {
        margin-left: 0;
        margin-top: -2rem;
    }

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

    .gallery {
        padding: 4rem 1.5rem;
    }

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

    .gallery__item--large {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .gallery__item--large img,
    .gallery__item--wide img {
        aspect-ratio: 16 / 9;
    }

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

    .visit {
        padding: 4rem 1.5rem;
    }

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

    .contact {
        padding: 4rem 1.5rem;
    }

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

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

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .nav__inner {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 4.5rem 1.25rem 3rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

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

    .menu-card {
        padding: 1.75rem;
    }

    .contact__form {
        padding: 1.75rem;
    }
}
