*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #0A2342;
    --midnight-light: #132F4F;
    --midnight-dark: #061829;
    --mint: #A8D5BA;
    --mint-light: #C8E6D0;
    --mint-dark: #7FB892;
    --cream: #F5F1EB;
    --cream-dark: #E8E0D4;
    --warm-white: #FAF8F5;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #6B6B6B;
    --gold: #C9A96E;
    --gold-light: #D4BA8A;
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 80px;
    --container-max: 1200px;
    --section-padding: clamp(80px, 12vw, 140px);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.7;
    -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;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(10, 35, 66, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 213, 186, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 35, 66, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--mint);
    color: var(--midnight);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.nav-brand:hover .nav-brand-mark {
    transform: rotate(-5deg) scale(1.05);
    background: var(--mint-light);
}

.nav-brand-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(245, 241, 235, 0.75);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--mint);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--mint);
}

.nav-link::after:hover {
    width: 100%;
}

.nav-link--cta {
    background: var(--mint);
    color: var(--midnight);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--mint-light);
    color: var(--midnight);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(168, 213, 186, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: var(--midnight-dark);
    overflow: hidden;
    padding: calc(var(--nav-height) + 40px) clamp(20px, 4vw, 48px) 60px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(6, 24, 41, 0.92) 0%, rgba(10, 35, 66, 0.85) 50%, rgba(19, 47, 79, 0.88) 100%),
        url('https://images.pexels.com/photos/6278886/pexels-photo-6278886.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--warm-white), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--mint-dark);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-headline-accent {
    color: var(--mint);
    font-style: italic;
    font-weight: 500;
}

.hero-subheadline {
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(245, 241, 235, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-details {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(245, 241, 235, 0.65);
}

.hero-detail-icon {
    color: var(--mint-dark);
    flex-shrink: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 241, 235, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--mint);
    color: var(--midnight);
    border-color: var(--mint);
}

.btn--primary:hover {
    background: var(--mint-light);
    border-color: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 213, 186, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border-color: rgba(245, 241, 235, 0.4);
}

.btn--outline:hover {
    border-color: var(--mint);
    color: var(--mint);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
}

.btn--large {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint-dark);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--midnight);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-title-accent {
    color: var(--mint-dark);
    font-style: italic;
    font-weight: 500;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 560px;
}

/* ===== ABOUT ===== */
.about {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 35, 66, 0.15);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrap:hover img {
    transform: scale(1.03);
}

.about-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(168, 213, 186, 0.2);
    pointer-events: none;
}

.about-content {
    padding: clamp(20px, 3vw, 40px) 0;
}

.about-content p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

.about-feature svg {
    color: var(--mint-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== DRINKS ===== */
.drinks {
    padding: var(--section-padding) 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.drinks::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 213, 186, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.drinks .section-label {
    color: var(--mint);
}

.drinks .section-title {
    color: var(--cream);
}

.drinks .section-title-accent {
    color: var(--mint);
}

.drinks .section-subtitle {
    color: rgba(245, 241, 235, 0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.drink-card {
    background: var(--midnight-light);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(168, 213, 186, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.drink-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.drink-card-image {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.drink-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.drink-card:hover .drink-card-image img {
    transform: scale(1.08);
}

.drink-card-body {
    padding: 28px;
}

.drink-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.drink-card-desc {
    font-size: 0.925rem;
    color: rgba(245, 241, 235, 0.65);
    line-height: 1.7;
}

/* ===== MENU ===== */
.menu {
    padding: var(--section-padding) 0;
    background: var(--cream);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--mint-dark), transparent);
}

.menu-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.menu-content {
    padding: clamp(20px, 3vw, 40px) 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 36px 0;
}

.menu-item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(10, 35, 66, 0.08);
}

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

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--midnight);
}

.menu-item-tag {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint-dark);
    background: rgba(168, 213, 186, 0.2);
    padding: 3px 10px;
    border-radius: 20px;
}

.menu-item-desc {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

.menu-image-side {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 35, 66, 0.12);
    margin-top: 20px;
}

.menu-food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.menu-image-accent {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--midnight);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}

/* ===== VISIT ===== */
.visit {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: stretch;
}

.visit-info {
    padding: clamp(20px, 3vw, 40px) 0;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.visit-detail {
    display: flex;
    gap: 16px;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--midnight);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.925rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.visit-detail a:hover {
    color: var(--mint-dark);
    text-decoration: underline;
}

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

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
}

.hours-row span:first-child {
    color: var(--text-medium);
}

.hours-row span:last-child {
    color: var(--midnight);
    font-weight: 500;
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(10, 35, 66, 0.1);
    min-height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 213, 186, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact .section-label {
    color: var(--mint);
}

.contact .section-title {
    color: var(--cream);
}

.contact .section-title-accent {
    color: var(--mint);
}

.contact .section-subtitle {
    color: rgba(245, 241, 235, 0.7);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-content {
    padding: clamp(20px, 3vw, 40px) 0;
}

.contact-form {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 241, 235, 0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid rgba(168, 213, 186, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: var(--cream);
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 241, 235, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(168, 213, 186, 0.15);
}

.form-group 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='%23A8D5BA' 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 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--midnight);
    color: var(--cream);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form-success svg {
    color: var(--mint);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--cream);
}

.form-success p {
    font-size: 0.95rem;
    color: rgba(245, 241, 235, 0.7);
    line-height: 1.6;
    max-width: 320px;
}

.contact-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--midnight-dark);
    padding: 80px 0 0;
    border-top: 1px solid rgba(168, 213, 186, 0.08);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: clamp(40px, 6vw, 80px);
    padding-bottom: 60px;
}

.footer-brand .nav-brand-mark {
    margin-bottom: 16px;
}

.footer-brand p {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(245, 241, 235, 0.6);
    line-height: 1.7;
    max-width: 300px;
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.875rem;
    color: rgba(245, 241, 235, 0.55);
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--mint);
}

.footer-bottom {
    border-top: 1px solid rgba(168, 213, 186, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 241, 235, 0.4);
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.revealed {
        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; }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .drinks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .drinks-grid .drink-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        justify-self: center;
    }
}

@media (max-width: 900px) {
    .about-layout,
    .menu-layout,
    .visit-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        max-height: 400px;
    }

    .about-image-wrap img {
        height: 400px;
    }

    .menu-image-side {
        order: -1;
    }

    .menu-food-image {
        height: 300px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 35, 66, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.1rem;
        color: rgba(245, 241, 235, 0.85);
    }

    .nav-link:hover {
        color: var(--mint);
    }

    .nav-link--cta {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-details {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

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

    .drinks-grid .drink-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

@media (max-width: 480px) {
    .hero-tagline {
        font-size: 0.7rem;
    }

    .hero-tagline::before,
    .hero-tagline::after {
        width: 24px;
    }

    .about-image-wrap {
        max-height: 300px;
    }

    .about-image-wrap img {
        height: 300px;
    }

    .menu-food-image {
        height: 220px;
    }
}
