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

:root {
    --plum-deep: #2A0A28;
    --plum: #4A1942;
    --plum-mid: #6B2158;
    --plum-light: #8B3A72;
    --plum-pale: #F5E6F0;
    --plum-ghost: #FDF5FA;
    --amber: #D4A017;
    --amber-light: #E8C05A;
    --amber-pale: #FFF8E7;
    --cream: #FDF9F3;
    --cream-dark: #F5EDE3;
    --charcoal: #1A1A1A;
    --text: #2A2A2A;
    --text-light: #6B6B6B;
    --text-muted: #9A9A9A;
    --white: #FFFFFF;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

/* LOADER */
.loader {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--plum-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.loader-text {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--amber);
    letter-spacing: 0.3em;
    animation: loaderPulse 1.2s var(--ease-in-out) infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
    background: rgba(42, 10, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--amber);
    letter-spacing: 0.15em;
    font-weight: 500;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--amber);
}

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

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* NAV OVERLAY */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 105;
    background: var(--plum-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-inner {
    text-align: center;
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 8px;
}

.nav-links {
    flex-direction: column;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--white);
    letter-spacing: 0.02em;
    text-transform: none;
    transition: color 0.3s, transform 0.3s var(--ease-out-expo);
}

.nav-links a:hover {
    color: var(--amber);
    transform: translateX(8px);
}

.nav-links a::after {
    display: none;
}

.nav-contact {
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 2;
}

.nav-contact .nav-phone {
    color: var(--amber);
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-primary {
    background: var(--amber);
    color: var(--plum-deep);
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

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

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

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

/* SECTION LABEL */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 2rem;
}

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

/* HERO */
.hero {
    min-height: 100vh;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(74, 25, 66, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-right: 2rem;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 2.5rem;
}

.hero-label .label-line {
    width: 32px;
    height: 1px;
    background: var(--amber);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--amber);
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

/* HERO IMAGE STACK */
.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 700px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 2px;
}

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

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

.hero-img-primary {
    width: 360px;
    height: 520px;
    top: 0;
    right: 0;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-img-secondary {
    width: 260px;
    height: 200px;
    bottom: 60px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--plum-deep);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 4;
    background: var(--amber);
    color: var(--plum-deep);
    padding: 1.5rem;
    text-align: center;
    min-width: 120px;
}

.badge-year {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: scrollBounce 2s var(--ease-in-out) infinite;
}

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

/* PHILOSOPHY */
.philosophy {
    background: var(--cream);
    padding: 8rem 0;
}

.philosophy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-left {
    padding-right: 1rem;
}

.philosophy-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--plum-deep);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.philosophy-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.philosophy-image {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(74, 25, 66, 0.15);
}

.philosophy-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.philosophy-image:hover img {
    transform: scale(1.02);
}

.philosophy-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--cream-dark);
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--plum);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    line-height: 1.5;
}

/* MENU */
.menu {
    background: var(--plum-deep);
    padding: 8rem 0;
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(107, 33, 88, 0.4) 0%, transparent 70%);
    pointer-events: none;
}

.menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.menu-header {
    text-align: center;
    margin-bottom: 5rem;
}

.menu-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.menu-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-category {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    transition: background 0.3s, border-color 0.3s;
}

.menu-category:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 160, 23, 0.2);
}

.category-header {
    padding: 2rem 2rem 0;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.category-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
}

.category-image {
    overflow: hidden;
    margin: 1.5rem 0;
}

.category-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.menu-category:hover .category-image img {
    transform: scale(1.05);
}

.category-items {
    list-style: none;
    padding: 0 2rem 2rem;
}

.category-items li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.875rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.category-items li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.item-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 400;
}

.item-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-note {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-note p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    font-weight: 300;
}

/* GALLERY */
.gallery {
    background: var(--cream);
    padding: 8rem 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-header {
    margin-bottom: 4rem;
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    color: var(--plum-deep);
    font-weight: 400;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 2px;
}

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

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

.gallery-item--tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.gallery-item--tall img {
    height: 100%;
}

.gallery-item:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1;
}

.gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1;
}

.gallery-item:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 3;
}

/* VISIT */
.visit {
    background: var(--plum);
    padding: 8rem 0;
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 10% 90%, rgba(212, 160, 23, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.visit-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.visit-left {
    padding-top: 1rem;
}

.visit-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    color: var(--white);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.visit-detail svg {
    color: var(--amber);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.375rem;
    font-weight: 600;
}

.visit-detail p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
}

.visit-detail a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.visit-detail a:hover {
    color: var(--amber);
}

/* RESERVATION FORM */
.reservation-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 3rem;
}

.reservation-form-wrapper h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 2rem;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    padding: 0.875rem 1rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.3s, background 0.3s;
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.08);
}

.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='%23D4A017' 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-group select option {
    background: var(--plum-deep);
    color: var(--white);
}

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

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}

.form-success svg {
    margin: 0 auto 1.5rem;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.7;
}

/* MAP */
.visit-map {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.visit-map iframe {
    filter: saturate(0.6) brightness(0.85) contrast(1.1);
    transition: filter 0.4s;
}

.visit-map:hover iframe {
    filter: saturate(0.8) brightness(0.9) contrast(1.05);
}

/* FOOTER */
.footer {
    background: var(--plum-deep);
    padding: 5rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--amber);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.7;
    max-width: 280px;
}

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

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s, transform 0.3s var(--ease-out-expo);
}

.footer-links a:hover {
    color: var(--amber);
    transform: translateX(4px);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--amber);
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.05em;
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.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: 3rem;
        padding-top: 7rem;
    }

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

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-right {
        display: none;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .philosophy-left {
        padding-right: 0;
    }

    .philosophy-image {
        max-width: 600px;
        margin: 0 auto;
    }

    .philosophy-image img {
        height: 500px;
    }

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

    .visit-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-container {
        padding: 6rem 1.5rem 3rem;
    }

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

    .hero-scroll {
        display: none;
    }

    .philosophy,
    .menu,
    .gallery,
    .visit {
        padding: 5rem 0;
    }

    .philosophy-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--tall {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 300px;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        height: 220px;
    }

    .gallery-item--wide {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 220px;
    }

    .gallery-item img {
        height: 100%;
    }

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

    .reservation-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .visit-title {
        font-size: clamp(2rem, 7vw, 2.75rem);
    }
}

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

    .nav-container {
        padding: 0 1.25rem;
    }

    .hero-container {
        padding: 5rem 1.25rem 2rem;
    }

    .menu-container,
    .gallery-container,
    .visit-container {
        padding: 0 1.25rem;
    }

    .category-header,
    .category-items {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
