/* ========================================
   CLUBHOUSE BAR & GRILL — STYLES
   Color Palette: Teal + Slate Grey
   Fonts: Cormorant Garamond + Montserrat
======================================== */

/* --- CSS Custom Properties --- */
:root {
    --teal-darkest: #0A3D3D;
    --teal-dark: #0D4F4F;
    --teal-mid: #1A7F7F;
    --teal-light: #2A9D9D;
    --teal-pale: #E8F4F4;
    --teal-ghost: #F4FAFA;
    
    --slate-darkest: #1C2D3A;
    --slate-dark: #2C3E50;
    --slate-mid: #4A6274;
    --slate-light: #8FA3B3;
    --slate-pale: #D1DCE6;
    --slate-ghost: #F0F4F7;
    
    --cream: #FAFBFC;
    --white: #FFFFFF;
    --black: #0A0F14;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--slate-dark);
    background: var(--cream);
    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;
}

ul {
    list-style: none;
}

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

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

/* --- Typography --- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-mid);
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--teal-mid);
}

.section-label.light {
    color: var(--teal-pale);
}

.section-label.light::before {
    background: var(--teal-light);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--slate-darkest);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

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

.section-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--slate-mid);
    font-style: italic;
    max-width: 520px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-dark);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(13, 79, 79, 0.3);
}

.btn-primary:hover {
    background: var(--teal-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 79, 79, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--white);
}

.btn-outline-light {
    background: transparent;
    color: var(--teal-pale);
    border: 1px solid rgba(232, 244, 244, 0.4);
}

.btn-outline-light:hover {
    background: var(--teal-pale);
    color: var(--teal-darkest);
    border-color: var(--teal-pale);
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 251, 252, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(250, 251, 252, 0.97);
    border-bottom-color: var(--slate-pale);
    box-shadow: 0 2px 30px rgba(28, 45, 58, 0.06);
}

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

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

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

.logo-icon {
    color: var(--teal-dark);
    flex-shrink: 0;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--slate-darkest);
    letter-spacing: -0.01em;
}

.logo-tag {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--slate-mid);
    margin-top: 3px;
}

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

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate-dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

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

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

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

.nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--slate-darkest);
    padding: 120px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    z-index: 1000;
}

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

.nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--slate-pale);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease-out);
    display: block;
}

.nav-link:hover {
    color: var(--teal-light);
    padding-left: 12px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 14px 28px;
    background: var(--teal-dark);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    width: 100%;
}

.nav-cta:hover {
    background: var(--teal-mid);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/6278886/pexels-photo-6278886.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 20, 0.72) 0%,
        rgba(13, 79, 79, 0.55) 50%,
        rgba(28, 45, 58, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    padding: 0 24px;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--teal-light);
    margin: 0 auto 28px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 44px;
    font-style: italic;
}

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

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

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.04em;
}

.hero-info-item svg {
    color: var(--teal-light);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll span {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(28, 45, 58, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(28, 45, 58, 0.2);
    border: 4px solid var(--cream);
}

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

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--teal-dark);
    color: var(--white);
    padding: 16px 24px;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    border-radius: 2px;
    z-index: 2;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--slate-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-dark);
}

.feature-item svg {
    color: var(--teal-mid);
    flex-shrink: 0;
}

/* --- Menu --- */
.menu {
    padding: 120px 0;
    background: var(--slate-ghost);
}

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

.menu-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.menu-category {
    background: var(--white);
    border-radius: 4px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(28, 45, 58, 0.06);
    transition: box-shadow 0.3s var(--ease-out);
}

.menu-category:hover {
    box-shadow: 0 8px 40px rgba(28, 45, 58, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--slate-pale);
}

.category-header svg {
    color: var(--teal-mid);
}

.category-header h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-darkest);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.menu-item-desc {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    color: var(--slate-mid);
    line-height: 1.6;
}

.menu-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.menu-cta p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--slate-mid);
    font-style: italic;
}

/* --- Gallery --- */
.gallery {
    padding: 120px 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item--wide {
    grid-column: span 7;
    grid-row: span 1;
}

.gallery-item:not(.gallery-item--wide) {
    grid-column: span 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(10, 15, 20, 0.7), transparent);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* --- Experience / CTA --- */
.experience {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/6268/restaurant-coffee-espresso-professional.jpg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=900') center center / cover no-repeat;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 61, 61, 0.9) 0%,
        rgba(13, 79, 79, 0.82) 50%,
        rgba(28, 45, 58, 0.88) 100%
    );
}

.experience-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
}

.experience-text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
    margin-bottom: 48px;
    font-style: italic;
}

.experience-details {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.exp-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 32px;
}

.exp-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232, 244, 244, 0.55);
    margin-bottom: 8px;
}

.exp-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
}

.exp-link {
    color: var(--teal-pale);
    transition: color 0.3s var(--ease-out);
}

.exp-link:hover {
    color: var(--white);
}

.exp-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    align-self: center;
}

.experience-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--slate-ghost);
}

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

.contact-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--slate-mid);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-pale);
    border-radius: 50%;
    color: var(--teal-dark);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-light);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--slate-dark);
}

.contact-value a {
    color: var(--teal-dark);
    transition: color 0.3s var(--ease-out);
}

.contact-value a:hover {
    color: var(--teal-mid);
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(28, 45, 58, 0.1);
}

/* --- Contact Form --- */
.form-card {
    background: var(--white);
    border-radius: 4px;
    padding: 48px 40px;
    box-shadow: 0 4px 24px rgba(28, 45, 58, 0.06);
}

.form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--slate-darkest);
    margin-bottom: 8px;
}

.form-subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--slate-mid);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-mid);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--slate-dark);
    background: var(--slate-ghost);
    border: 1px solid var(--slate-pale);
    border-radius: 2px;
    outline: none;
    transition: all 0.3s var(--ease-out);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--teal-mid);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(42, 157, 157, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-light);
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 20px;
    text-align: center;
    color: var(--teal-dark);
}

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

.form-success p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--slate-mid);
}

/* --- Footer --- */
.footer {
    background: var(--slate-darkest);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-top: 20px;
    max-width: 280px;
}

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s var(--ease-out);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 6px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

.footer-hours .day {
    color: rgba(255, 255, 255, 0.6);
}

.footer-hours .hours {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

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

.footer-bottom p {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s var(--ease-out);
}

.footer-bottom a:hover {
    color: var(--teal-light);
}

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

.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) {
    .about-grid {
        gap: 60px;
    }
    
    .contact-grid {
        gap: 60px;
    }
    
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 500px;
    }
    
    .menu-categories {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    
    .gallery-item--wide {
        grid-column: span 2;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .header-inner {
        height: 70px;
    }
    
    .hero {
        min-height: 100svh;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .experience-details {
        flex-direction: column;
        gap: 24px;
    }
    
    .exp-divider {
        width: 48px;
        height: 1px;
        align-self: center;
    }
    
    .experience-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 200px);
    }
    
    .gallery-item--wide,
    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 1;
    }
    
    .about-img-secondary {
        right: -16px;
        bottom: -24px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .menu-category {
        padding: 32px 24px;
    }
    
    .form-card {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .about,
    .menu,
    .gallery,
    .contact {
        padding: 80px 0;
    }
    
    .experience {
        padding: 80px 0;
    }
    
    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }
}
