/* ========================================
   THE FLYING SAUCER — Brand Styles
   Charcoal + Coral | South Haven, MI
   ======================================== */

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

:root {
    --charcoal: #1A1D23;
    --charcoal-light: #2A2D35;
    --charcoal-mid: #3D4049;
    --coral: #E8635B;
    --coral-dark: #C94E47;
    --coral-light: #F07870;
    --cream: #F7F5F2;
    --cream-dark: #EDEBE6;
    --white: #FFFFFF;
    --text-primary: #1A1D23;
    --text-secondary: #5A5D66;
    --text-muted: #8A8D96;
    --border: #E0DED8;
    --border-light: #EDEBE6;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --shadow-sm: 0 1px 2px rgba(26, 29, 35, 0.04);
    --shadow-md: 0 4px 12px rgba(26, 29, 35, 0.06);
    --shadow-lg: 0 8px 32px rgba(26, 29, 35, 0.08);
    --shadow-xl: 0 16px 48px rgba(26, 29, 35, 0.1);

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--cream);
    -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 {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ── Accessibility ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    background: var(--coral);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-md);
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }
}

/* ── Typography ── */
.eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.section-title em {
    font-style: italic;
    color: var(--coral);
}

.label-line {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--coral);
    margin-bottom: var(--space-md);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(232, 99, 91, 0.3);
}

.btn--primary:hover {
    background: var(--coral-dark);
    box-shadow: 0 4px 16px rgba(232, 99, 91, 0.4);
    transform: translateY(-1px);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

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

.btn--large {
    padding: 1rem 2rem;
    font-size: 0.9375rem;
}

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

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(247, 245, 242, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* ── Logo ── */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--charcoal);
    text-decoration: none;
}

.logo__icon {
    width: 32px;
    height: 36px;
    color: var(--coral);
    flex-shrink: 0;
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo--light {
    color: var(--white);
}

/* ── Navigation ── */
.nav__toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav__hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    position: relative;
    transition: all var(--transition-base);
}

.nav__hamburger::before,
.nav__hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--charcoal);
    left: 0;
    transition: all var(--transition-base);
}

.nav__hamburger::before { top: -6px; }
.nav__hamburger::after { top: 6px; }

.nav__toggle[aria-expanded="true"] .nav__hamburger {
    background: transparent;
}

.nav__toggle[aria-expanded="true"] .nav__hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav__link:hover {
    color: var(--charcoal);
    background: var(--cream-dark);
}

.nav__link--accent {
    color: var(--coral);
    font-weight: 600;
}

.nav__link--accent:hover {
    background: rgba(232, 99, 91, 0.08);
}

/* ── Hero ── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.hero__accent-bar {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral) 0%, var(--coral-light) 50%, var(--coral) 100%);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-4xl) 0;
    min-height: calc(100vh - 72px);
    min-height: calc(100dvh - 72px);
}

.hero__content {
    max-width: 560px;
}

.hero__eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-lg);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.01em;
}

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

.hero__actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
    line-height: 1;
}

.stat__label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.stat__divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ── Hero Image Stack ── */
.hero__visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero__image-stack {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: var(--space-md);
}

.hero__img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__img--main {
    grid-row: 1 / 3;
    height: 100%;
    min-height: 500px;
}

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

.hero__img--accent {
    position: absolute;
    bottom: var(--space-2xl);
    right: calc(-2rem);
    width: 55%;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

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

.hero__img--shop {
    display: none;
}

/* ── Marquee ── */
.marquee {
    background: var(--charcoal);
    padding: var(--space-md) 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    animation: marquee 30s linear infinite;
    gap: var(--space-2xl);
}

.marquee__track span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.marquee__dot {
    color: var(--coral) !important;
    font-size: 0.5rem !important;
}

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

/* ── About ── */
.about {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.about__content {
    max-width: 640px;
}

.about__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border);
}

.feature {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature__icon {
    width: 24px;
    height: 24px;
    color: var(--coral);
    flex-shrink: 0;
}

.feature__title {
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
}

.feature__text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ── Menu ── */
.menu {
    padding: var(--space-5xl) 0;
    background: var(--cream);
}

.menu__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.menu__header .label-line {
    margin-left: auto;
    margin-right: auto;
}

.menu__subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.menu-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.menu-card__img {
    height: 220px;
    overflow: hidden;
}

.menu-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.menu-card__body {
    padding: var(--space-xl);
}

.menu-card__category {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-bottom: var(--space-sm);
}

.menu-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.menu-card__desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.menu-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.menu-card__list li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: var(--space-lg);
    position: relative;
}

.menu-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    background: var(--coral);
    border-radius: 50%;
}

/* ── Editorial ── */
.editorial {
    padding: var(--space-5xl) 0;
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.editorial__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.editorial__title {
    color: var(--white);
}

.editorial__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-lg);
}

.editorial__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

/* ── Visit ── */
.visit {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.visit__info {
    max-width: 520px;
}

.visit__info .label-line {
    margin-bottom: var(--space-md);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.visit__detail {
    display: flex;
    gap: var(--space-lg);
    align-items: start;
}

.visit__icon {
    width: 24px;
    height: 24px;
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit__detail-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.visit__detail p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
}

.visit__detail a {
    color: var(--coral);
    transition: color var(--transition-fast);
}

.visit__detail a:hover {
    color: var(--coral-dark);
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 420px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: var(--cream-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    text-align: center;
    padding: var(--space-2xl);
}

.map-placeholder__icon {
    width: 48px;
    height: 48px;
    color: var(--coral);
    opacity: 0.6;
}

.map-placeholder p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.map-placeholder__link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--coral);
    padding: 0.625rem 1.25rem;
    border: 1.5px solid var(--coral);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.map-placeholder__link:hover {
    background: var(--coral);
    color: var(--white);
}

/* ── Contact ── */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--cream);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact__col {
    max-width: 480px;
}

.contact__col .label-line {
    margin-bottom: var(--space-md);
}

.contact__body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__method {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.contact__method:hover {
    border-color: var(--coral);
    box-shadow: var(--shadow-md);
}

.contact__method-icon {
    width: 20px;
    height: 20px;
    color: var(--coral);
    flex-shrink: 0;
}

.contact__method span {
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* ── Form ── */
.contact__form-col {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form__group {
    margin-bottom: var(--space-lg);
}

.form__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form__input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-primary);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form__input:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 99, 91, 0.1);
}

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

.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='%235A5D66' 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 {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.form__success-icon {
    width: 56px;
    height: 56px;
    color: var(--coral);
    margin: 0 auto var(--space-lg);
}

.form__success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.form__success-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Footer ── */
.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-lg);
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-lg);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
    padding: 2px 0;
}

.footer__links a:hover {
    color: var(--coral);
}

.footer__address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.footer__address a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.footer__address a:hover {
    color: var(--coral);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    gap: var(--space-md);
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        padding: var(--space-3xl) 0;
        min-height: auto;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__visual {
        min-height: 400px;
    }

    .hero__img--main {
        min-height: 400px;
    }

    .hero__img--accent {
        right: 0;
        width: 50%;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about__label {
        display: flex;
        align-items: center;
        gap: var(--space-md);
    }

    .menu__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .editorial__grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .editorial__image {
        order: -1;
    }

    .editorial__image img {
        height: 360px;
        object-fit: cover;
    }

    .visit__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .nav__toggle {
        display: flex;
    }

    .nav__list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(247, 245, 242, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: var(--space-lg);
        gap: var(--space-xs);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition-base);
        pointer-events: none;
    }

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

    .nav__link {
        width: 100%;
        padding: var(--space-md);
        font-size: 1rem;
    }

    .hero__headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }

    .stat__divider {
        display: none;
    }

    .hero__img--accent {
        display: none;
    }

    .about__features {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    :root {
        --space-5xl: 5rem;
        --space-4xl: 3rem;
    }

    .hero__img--main {
        min-height: 300px;
    }

    .contact__form-col {
        padding: var(--space-lg);
    }
}
