/* ============================================
   Wine Rack & Liquor — Premium Dark Luxury
   Burgundy + Blush + Gold Palette
   ============================================ */

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

:root {
    --bg-primary: #0B0810;
    --bg-secondary: #120E1C;
    --bg-card: #161025;
    --bg-elevated: #1C1530;
    
    --burgundy: #8B1A1A;
    --burgundy-light: #A52A2A;
    --burgundy-dark: #6B1010;
    --blush: #E8B4B8;
    --blush-light: #F2D0D4;
    --blush-muted: #C4919A;
    
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-dark: #A88A3A;
    --gold-muted: rgba(201, 168, 76, 0.15);
    
    --text-primary: #F5F0EB;
    --text-secondary: #B8A9C4;
    --text-muted: #7A6B8A;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Background Glows --- */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow--top {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(139, 26, 26, 0.25) 0%, transparent 70%);
}

.bg-glow--bottom {
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
    background: rgba(11, 8, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

.logo__amp {
    color: var(--gold);
    font-style: italic;
}

/* --- Navigation --- */
.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav__link {
    display: block;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav__link:hover {
    color: var(--text-primary);
    background: rgba(201, 168, 76, 0.08);
}

.nav__link--cta {
    background: var(--gold-muted);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.nav__link--cta:hover {
    background: rgba(201, 168, 76, 0.18);
    border-color: rgba(201, 168, 76, 0.45);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav__toggle:hover {
    background: rgba(201, 168, 76, 0.08);
}

.nav__burger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__burger::before,
.nav__burger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    left: 0;
    transition: transform var(--transition-base);
}

.nav__burger::before { top: -7px; }
.nav__burger::after { bottom: -7px; }

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

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

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

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(11, 8, 16, 0.97) 0%, rgba(11, 8, 16, 0.7) 50%, rgba(11, 8, 16, 0.4) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background: 
        url('https://images.pexels.com/photos/30826794/pexels-photo-30826794.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1200&h=1600') center/cover no-repeat;
    z-index: 0;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 70%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 70%);
}

.hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--blush);
    font-style: italic;
    font-weight: 500;
}

.hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero__image-wrapper {
    position: relative;
    z-index: 2;
}

.hero__image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 1;
    pointer-events: none;
}

.hero__image-frame img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-md);
    z-index: -1;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

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

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header__eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.section-header__subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* --- Selection --- */
.selection {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.selection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

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

.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, 0.15);
}

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

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

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

.card__body {
    padding: 28px;
}

.card__icon {
    margin-bottom: 16px;
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

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

/* --- About --- */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 26, 26, 0.3), transparent);
}

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

.about__image-col {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

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

.about__image-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 2;
    border: 3px solid var(--bg-primary);
}

.about__image-float img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about__accent-box {
    position: absolute;
    top: -24px;
    left: -24px;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.about__accent-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.about__accent-sub {
    font-size: 0.85rem;
    color: var(--blush);
    margin-top: 2px;
}

.about__content-col {
    max-width: 520px;
}

.about__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    border-radius: 2px;
    margin: 24px 0;
}

.about__text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.stat__number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat--divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 4px;
}

/* --- Visit --- */
.visit {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.visit__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit__content {
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.visit__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--burgundy));
    border-radius: 2px;
    margin: 24px 0;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold-muted);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.visit__detail-link {
    color: var(--gold);
    transition: color var(--transition-fast);
}

.visit__detail-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.visit__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 26, 26, 0.3), transparent);
}

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

.contact__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-top: 20px;
}

.contact__form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

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

.form__input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.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 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%237A6B8A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form__select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

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

.contact__success {
    text-align: center;
    padding: 48px 40px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.contact__success-icon {
    margin-bottom: 20px;
}

.contact__success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

/* --- Footer --- */
.footer {
    padding: 64px 0 32px;
    position: relative;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.footer__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 320px;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer__info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer__link {
    color: var(--gold);
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer__responsibility {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.7;
}

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

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero::after {
        display: none;
    }
    
    .hero__image-frame img {
        height: 500px;
    }
    
    .about__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__image-float {
        right: 20px;
        bottom: -30px;
    }
    
    .visit__inner {
        grid-template-columns: 1fr;
    }
    
    .visit__map {
        min-height: 300px;
    }
    
    .contact__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        flex-direction: column;
        background: rgba(11, 8, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 100px 32px 32px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        border-left: 1px solid rgba(201, 168, 76, 0.1);
    }
    
    .nav__list.open {
        transform: translateX(0);
    }
    
    .nav__link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .about__image-float {
        width: 200px;
        right: 0;
    }
    
    .about__accent-box {
        top: -16px;
        left: -16px;
        padding: 16px 20px;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .contact__form {
        padding: 24px;
    }
    
    .visit__content {
        padding: 24px;
    }
    
    .footer__inner {
        gap: 32px;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 80px 0 48px;
    }
    
    .hero__image-frame img {
        height: 360px;
    }
    
    .hero__image-accent {
        display: none;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    .selection, .about, .visit, .contact {
        padding: 72px 0;
    }
    
    .about__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .stat--divider {
        width: 40px;
        height: 1px;
        margin: 0;
    }
}
