
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --background: #faf7f0;
    --foreground: #2a241c;
    --card: #ffffff;
    --muted: #f1ece1;
    --muted-foreground: #6b6155;
    --border: #e6dfd1;
    --gold: #c4994a;
    --gold-soft: #e6c98a;
    --ink: #2a241c;
    --ink-soft: #3d362d;
    --cream: #f7f1e3;
    --gradient-gold: linear-gradient(135deg, #d4ad5e 0%, #b88a3e 100%);
    --gradient-warm: linear-gradient(180deg, #faf7f0 0%, #f1ece1 100%);
    --gradient-dark: linear-gradient(180deg, #2a241c 0%, #1a1612 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(26, 22, 18, 0.1) 0%, rgba(26, 22, 18, 0.85) 100%);
    --shadow-soft: 0 8px 30px rgba(42, 36, 28, 0.08);
    --shadow-elegant: 0 20px 60px rgba(42, 36, 28, 0.18);
    --shadow-gold: 0 14px 40px rgba(196, 153, 74, 0.35);
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-base: 300ms var(--ease-smooth);
    --font-display: 'IBM Plex Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-body: 'IBM Plex Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box
}

* {
    margin: 0;
    padding: 0;
    border: 0 solid var(--border)
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased
}

img,
svg {
    display: block;
    max-width: 100%
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit;
    cursor: pointer;
    background: none
}

input,
select,
textarea {
    font: inherit;
    color: inherit
}

ul {
    list-style: none
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    letter-spacing: 0;
    line-height: 1.1
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.25rem
}

@media (min-width:640px) {
    .container {
        padding: 0 1.5rem
    }
}

@media (min-width:1024px) {
    .container {
        padding: 0 2.5rem
    }
}

.kicker {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: var(--gold)
}

.text-balance {
    text-wrap: balance
}

.italic-gold {
    font-style: normal;
    color: var(--gold)
}

.font-display {
    font-family: var(--font-display)
}

.shadow-soft {
    box-shadow: var(--shadow-soft)
}

.shadow-elegant {
    box-shadow: var(--shadow-elegant)
}

.shadow-gold {
    box-shadow: var(--shadow-gold)
}

.bg-warm {
    background: var(--gradient-warm)
}

.bg-muted {
    background: var(--muted)
}

.bg-ink {
    background: var(--ink);
    color: var(--cream)
}

.bg-card {
    background: var(--card)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    white-space: nowrap
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--ink);
    box-shadow: var(--shadow-gold)
}

.btn-gold:hover {
    transform: scale(1.02)
}

.btn-ink {
    background: var(--ink);
    color: var(--cream);
    box-shadow: var(--shadow-soft)
}

.btn-ink:hover {
    background: #1a1612
}

.btn-outline {
    border: 1px solid rgba(247, 241, 227, 0.3);
    color: var(--cream);
    backdrop-filter: blur(6px)
}

.btn-outline:hover {
    background: rgba(247, 241, 227, 0.1)
}

.btn-bordered {
    border: 1px solid var(--border);
    color: var(--ink);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem
}

.btn-bordered:hover {
    background: var(--muted)
}

.icon-arrow {
    width: 16px;
    height: 16px
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(250, 247, 240, 0.85);
    border-bottom: 1px solid rgba(230, 223, 209, 0.6)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    height: 4.5rem
}

@media (min-width:768px) {
    .header-inner {
        height: 5rem
    }
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0
}

.header-logo {
    width: auto;
    height: 2.5rem;
    object-fit: contain
}

.text-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    text-decoration: none;
    font-family: var(--font-body);
    transform: translateY(7px)
}

.text-logo-main {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c9a44c
}

.text-logo-sub {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #171717
}

.text-logo-sub span {
    display: inline-block;
    width: 12px;
    height: 1px;
    background: #171717
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--ink)
}

/* Premium, readable styling for Impressum legal text */
.legal-section {
    padding: 3.5rem 0;
}

.legal-section .legal-notice {
    background: linear-gradient(180deg, rgba(247,243,236,0.8), rgba(255,255,255,0.95));
    padding: 3rem 3.5rem;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(26,22,18,0.06);
    color: var(--ink);
    font-family: 'Fira Sans', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.06rem;
    font-weight: 400;
    line-height: 1.95;
    max-width: 920px;
    width: min(94%, 920px);
    margin: 2.5rem auto;
    border: 1px solid rgba(26,22,18,0.06);
    text-align: left;
}

/* Decorative accent + animation for premium feel */
.legal-section .legal-notice {
    position: relative;
    transition: transform 300ms var(--ease-smooth), box-shadow 300ms var(--ease-smooth);
}

.legal-section .legal-notice::before { display: none }

@keyframes accentGrow {
    from { transform: scaleY(0); opacity: 0 }
    to { transform: scaleY(1); opacity: 1 }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px) }
    to { opacity: 1; transform: translateY(0) }
}

.legal-section .legal-notice {
    animation: none !important;
}

.legal-section .legal-notice p {
    opacity: 1;
    transform: none;
    animation: none !important;
}

.legal-section .legal-notice:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(26,22,18,0.06);
}

.legal-section .legal-notice p a {
    color: var(--ink);
    text-decoration: underline; 
    text-decoration-color: rgba(196,148,70,0.22);
}

.legal-section .legal-notice .muted-small {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

/* Layout for Impressum premium grid */
.legal-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.25rem;
    align-items: start;
}

.legal-panel {
    display: block;
}

.contact-panel .contact-card {
    background: var(--card);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(26,22,18,0.04);
    border: 1px solid rgba(26,22,18,0.04);
}

.contact-panel .kicker { color: var(--gold); font-weight:600 }

.legal-notice.no-accent::before { display: none }

@media (max-width:900px) {
    .legal-grid { grid-template-columns: 1fr; }
    .contact-panel { order: 2 }
    .legal-panel { order: 1 }
}

.legal-section .legal-notice p {
    margin-bottom: 1.05rem;
    color: var(--ink);
    font-size: 1.02rem;
}

.legal-section .legal-notice p:first-child {
    font-weight: 700;
    color: var(--ink);
    font-size: 1.02rem;
    margin-bottom: 1.1rem;
    letter-spacing: 0.03em;
    text-transform: none;
}

@media (min-width:1024px) {
    .legal-section .legal-notice {
        padding: 4rem 4.5rem;
        font-size: 1.08rem;
        line-height: 2.05;
    }
}

.brand-text .kicker {
    font-size: 0.55rem;
    color: var(--muted-foreground)
}

.brand-text h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.02em
}

@media (min-width:768px) {
    .brand-mark {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.25rem
    }

    .header-logo {
        height: 3rem
    }

    .brand-text h1 {
        font-size: 1.5rem
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 0.25rem
}

@media (min-width:1024px) {
    .nav-desktop {
        display: flex
    }
}

.nav-desktop a {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all var(--transition-base)
}

.nav-desktop a:hover {
    color: var(--ink)
}

.nav-desktop a.active {
    color: var(--ink);
    background: var(--muted)
}

.header-cta {
    display: none
}

@media (min-width:768px) {
    .header-cta {
        display: inline-flex
    }
}

.header-cta {
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    background: var(--ink);
    color: var(--background);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-base)
}

.header-cta:hover {
    background: #1a1612
}

.header-cta.active {
    background: var(--gold);
    color: var(--ink)
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid var(--border);
    color: var(--ink)
}

@media (min-width:1024px) {
    .menu-toggle {
        display: none
    }
}

/* Increase touch target for mobile */
@media (max-width:1024px) {
    .menu-toggle {
        width: 3.25rem;
        height: 3.25rem;
        padding: 0.25rem;
    }
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    background: var(--background)
}

.mobile-nav.open {
    display: block
}

.mobile-nav nav {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column
}

.mobile-nav a {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all var(--transition-base)
}

.mobile-nav a.active {
    color: var(--ink);
    background: rgba(196, 153, 74, 0.22);
    box-shadow: inset 3px 0 0 var(--gold)
}

.mobile-nav a.btn.active {
    background: var(--gold);
    color: var(--ink);
    box-shadow: var(--shadow-soft)
}

.mobile-nav .btn {
    margin-top: 0.75rem;
    justify-content: center;
    background: rgba(196, 153, 74, 0.22);
    color: var(--ink);
    box-shadow: inset 3px 0 0 var(--gold)
}

.hero {
    position: relative;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: ken-burns 20s var(--ease-smooth) infinite alternate
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay)
}

.hero-tint {
    position: absolute;
    inset: 0;
    background: rgba(42, 36, 28, 0.4)
}

.hero-content {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 6rem
}

@media (min-width:640px) {
    .hero-content {
        padding-top: 8rem;
        padding-bottom: 8rem
    }
}

@media (min-width:768px) {
    .hero-content {
        padding-top: 10rem;
        padding-bottom: 10rem
    }
}

@media (min-width:1024px) {
    .hero-content {
        padding-top: 12rem;
        padding-bottom: 12rem
    }
}

.hero-content .inner {
    max-width: 48rem;
    color: var(--cream)
}

.hero-content h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.12;
    margin-top: 1.5rem
}

.hero-content h2 span {
    display: block;
    font-style: normal;
    color: var(--gold)
}

.hero-content p.lead {
    margin-top: 1.25rem;
    font-size: 1rem;
    max-width: 36rem;
    color: rgba(247, 241, 227, 0.85);
    line-height: 1.6
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.hero-info {
    margin-top: 4rem;
    max-width: 42rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem
}

@media (min-width:640px) {
    .hero-info {
        grid-template-columns: repeat(3, 1fr)
    }
}

.hero-info-item {
    border-left: 2px solid rgba(196, 153, 74, 0.6);
    padding-left: 1rem
}

.hero-info-item .kicker {
    font-size: 0.62rem;
    color: rgba(196, 153, 74, 0.9)
}

.hero-info-item p {
    margin-top: 0.25rem;
    color: var(--cream);
    font-weight: 500;
    font-size: 0.95rem
}

.page-header {
    background: var(--gradient-warm);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
    text-align: center
}

@media (min-width:768px) {
    .page-header {
        padding: 7rem 0
    }
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--ink);
    margin-top: 1rem
}

.marquee {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--muted);
    overflow: hidden;
    padding: 1rem 0
}

.marquee-track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll 35s linear infinite
}

@media (max-width:1023px) {
    .marquee-track {
        animation-duration: 8s
    }
}

.marquee-item {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    color: rgba(42, 36, 28, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 3rem
}

.marquee-item .star {
    color: var(--gold)
}

.section {
    padding: 5rem 0
}

@media (min-width:768px) {
    .section {
        padding: 7rem 0
    }
}

.section-warm {
    background: var(--gradient-warm)
}

.section-muted {
    background: var(--muted)
}

.section-dark {
    background: var(--ink);
    color: var(--cream);
    padding: 3.5rem 0
}

@media (min-width:768px) {
    .section-dark {
        padding: 5rem 0
    }
}

.section-title {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto
}

.section-title h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--ink);
    margin-top: 1rem
}

.legal-section {
    padding: 3rem 0
}

.legal-notice {
    color: #b51600;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.3
}

.legal-notice p+p {
    margin-top: 1rem
}

.two-col {
    display: grid;
    gap: 2.5rem;
    align-items: center
}

@media (min-width:768px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 4rem
    }
}

.two-col img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    box-shadow: var(--shadow-elegant)
}

@media (min-width:768px) {
    .two-col img {
        height: 28rem
    }
}

.two-col h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--ink);
    font-weight: 600;
    line-height: 1.15;
    margin-top: 1rem
}

.two-col p {
    margin-top: 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.65
}

.two-col .link-arrow {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    font-weight: 600
}

.two-col .link-arrow:hover {
    color: var(--gold)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem
}

@media (min-width:768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem
    }
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--gold)
}

.stat-label {
    margin-top: 0.5rem;
    color: rgba(247, 241, 227, 0.7)
}

.dish-grid {
    max-width: 66rem;
    margin: 2.5rem auto 0;
    display: grid;
    gap: 1rem
}

@media (min-width:640px) {
    .dish-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .dish-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem
    }
}

.dish-card {
    position: relative;
    display: block;
    min-height: 100%;
    background: var(--ink);
    border: 1px solid rgba(196, 153, 74, 0.22);
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(42, 36, 28, 0.11);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base)
}

.dish-card:hover {
    border-color: rgba(196, 153, 74, 0.45);
    box-shadow: 0 24px 58px rgba(42, 36, 28, 0.18);
    transform: translateY(-3px)
}

.dish-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--muted)
}

.dish-card-photo .dish-img {
    aspect-ratio: 4 / 3
}

.dish-card-photo::after {
    display: none
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease-smooth)
}

.dish-card:hover .dish-img img {
    transform: scale(1.035)
}

.dish-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.22rem 0.62rem;
    background: rgba(247, 241, 227, 0.92);
    color: var(--ink);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    backdrop-filter: blur(8px)
}

.dish-body {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 3.5rem 1rem 1rem;
    background: linear-gradient(180deg, rgba(26, 22, 18, 0) 0%, rgba(26, 22, 18, 0.76) 48%, rgba(26, 22, 18, 0.92) 100%)
}

@media (min-width:768px) {
    .dish-body {
        padding: 3.75rem 1.1rem 1.1rem
    }
}

.dish-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem
}

.dish-head h3 {
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1.35
}

.dish-head .price {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold)
}

.dish-body p {
    margin-top: 0.5rem;
    color: rgba(247, 241, 227, 0.78);
    font-size: 0.8rem;
    line-height: 1.55
}

.values-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr
}

@media (min-width:640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width:1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem
}

@media (min-width:768px) {
    .value-card {
        padding: 1.75rem
    }
}

.value-card .num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: rgba(196, 153, 74, 0.6)
}

.value-card h3 {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink)
}

.value-card p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6
}

.gallery {
    display: grid;
    gap: 0.75rem
}

@media (min-width:768px) {
    .gallery {
        grid-template-columns: repeat(12, 1fr);
        gap: 1rem
    }
}

.gallery img {
    width: 100%;
    height: 18rem;
    object-fit: cover
}

@media (min-width:768px) {
    .g-1 {
        grid-column: span 5;
        grid-row: span 2;
        height: 100%
    }

    .g-2,
    .g-3 {
        grid-column: span 7;
        height: 20rem
    }

    .g-4,
    .g-5 {
        grid-column: span 6;
        height: 24rem
    }
}

.spaces-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr
}

@media (min-width:768px) {
    .spaces-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem
    }
}

.space-card {
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden
}

.space-card .img-wrap {
    aspect-ratio: 4 / 3;
    overflow: hidden
}

.space-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease-smooth)
}

.space-card:hover .img-wrap img {
    transform: scale(1.05)
}

.space-card .body {
    padding: 1.5rem
}

.space-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink)
}

.space-card p {
    margin-top: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 1.25rem;
    flex-wrap: wrap
}

.stars svg {
    color: var(--gold)
}

.stars .meta {
    margin-left: 0.5rem;
    font-weight: 600;
    color: var(--ink)
}

.stars .count {
    color: var(--muted-foreground);
    font-size: 0.875rem
}

.testimonials {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr
}

@media (min-width:768px) {
    .testimonials {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem
    }
}

.testimonial {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    position: relative
}

@media (min-width:768px) {
    .testimonial {
        padding: 2rem
    }
}

.testimonial .quote-mark {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(196, 153, 74, 0.3);
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    line-height: 1
}

.testimonial blockquote {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--ink);
    font-style: normal;
    line-height: 1.4;
    position: relative
}

.testimonial figcaption {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border)
}

.testimonial figcaption p:first-child {
    font-weight: 600;
    color: var(--ink)
}

.testimonial figcaption p:last-child {
    font-size: 0.875rem;
    color: var(--muted-foreground)
}

.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden
}

@media (min-width:768px) {
    .cta-section {
        padding: 7rem 0
    }
}

.cta-section .bg-img {
    position: absolute;
    inset: 0
}

.cta-section .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cta-section .bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(214, 182, 111, 0.18), transparent 24rem),
        linear-gradient(135deg, rgba(251, 246, 235, 0.94) 0%, rgba(241, 230, 210, 0.94) 52%, rgba(231, 217, 191, 0.94) 100%)
}

.cta-section .inner {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    text-align: center;
    color: var(--ink)
}

.cta-section h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-top: 1rem
}

.cta-section p {
    margin-top: 1.25rem;
    color: rgba(61, 54, 45, 0.76)
}

.cta-section .btn {
    margin-top: 2rem
}

.menu-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem
}

.tabs {
    display: inline-flex;
    padding: 0.25rem;
    background: var(--muted);
    border-radius: 9999px
}

.tab {
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
    transition: all var(--transition-base)
}

.tab:hover {
    color: var(--ink)
}

.tab[aria-selected="true"] {
    background: var(--ink);
    color: var(--background);
    box-shadow: var(--shadow-soft)
}

@media (max-width:520px) {
    .menu-controls {
        align-items: stretch
    }

    .tabs,
    .menu-controls .btn {
        width: 100%
    }

    .tab {
        flex: 1 1 0;
        min-width: 0;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        text-align: center
    }

    .menu-controls .btn {
        justify-content: center
    }
}

.menu-pages {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.menu-pages.hidden {
    display: none
}

.menu-page-img {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-soft)
}

.menu-page-img img {
    width: 100%;
    height: auto;
    display: block
}

.contact-grid {
    display: grid;
    gap: 2.5rem
}

@media (min-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem
    }
}

.contact-grid h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    color: var(--ink);
    font-weight: 600
}

.contact-grid>div>p {
    margin-top: 0.5rem;
    color: var(--muted-foreground)
}

.field {
    display: flex;
    flex-direction: column
}

.field label {
    font-size: 0.65rem
}

.field input,
.field select,
.field textarea {
    margin-top: 0.375rem;
    padding: 0.75rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    width: 100%;
    transition: all var(--transition-base)
}

.field input.is-valid,
.field textarea.is-valid {
    border-color: rgba(82, 128, 75, 0.65)
}

.field input.is-invalid,
.field textarea.is-invalid {
    border-color: #b64b3f;
    box-shadow: 0 0 0 2px rgba(182, 75, 63, 0.16)
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(196, 153, 74, 0.3)
}

.field textarea {
    min-height: 8.5rem;
    resize: vertical
}

.field-message {
    min-height: 1.2rem;
    margin-top: 0.35rem;
    color: #b64b3f;
    font-size: 0.85rem
}

.form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr
}

@media (min-width:640px) {
    .form-grid.cols-2 {
        grid-template-columns: repeat(2, 1fr)
    }
}

form {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

form .btn {
    width: 100%;
    justify-content: center
}

form .btn:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none
}

.form-status {
    min-height: 1.4rem;
    color: var(--muted-foreground);
    text-align: center
}

@media (max-width:520px) {
    .contact-grid {
        gap: 2rem
    }

    .contact-card {
        padding: 1rem
    }

    .contact-card .value {
        font-size: 1rem;
        overflow-wrap: anywhere
    }
}

.success {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gradient-warm);
    border: 1px solid rgba(196, 153, 74, 0.4);
    color: var(--ink)
}

.success p:first-child {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700
}

.success p:last-child {
    margin-top: 0.5rem;
    color: var(--muted-foreground)
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.contact-card {
    display: block;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: border-color var(--transition-base)
}

.contact-card:hover {
    border-color: var(--gold)
}

.contact-card .row {
    display: flex;
    align-items: center;
    gap: 1rem
}

.icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: var(--gradient-gold);
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ink)
}

.contact-card .label {
    font-family: var(--font-body)
}

.contact-card .label .kicker {
    color: var(--muted-foreground)
}

.contact-card .value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    transition: color var(--transition-base);
    word-break: break-word
}

.contact-card:hover .value {
    color: var(--gold)
}

.info-block {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border)
}

.info-block .heading {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: 0.75rem
}

.info-block dl {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.875rem
}

.info-block dl>div {
    display: flex;
    justify-content: space-between
}

.info-block dt {
    color: var(--muted-foreground)
}

.info-block dd {
    color: var(--ink);
    font-weight: 500
}

.info-block .map-link {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink)
}

.info-block .map-link:hover {
    color: var(--gold)
}

.footer {
    background:
        radial-gradient(circle at 15% 0%, rgba(214, 182, 111, 0.12), transparent 22rem),
        linear-gradient(135deg, #fbf6eb 0%, #f1e6d2 58%, #e7d9bf 100%);
    color: var(--ink);
    padding: 3rem 0;
    border-top: 1px solid rgba(196, 153, 74, 0.22)
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr
}

@media (min-width:768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.footer-logo {
    width: auto;
    height: 2.5rem;
    object-fit: contain
}

.footer-text-logo {
    align-items: flex-start;
    transform: none
}

.footer-text-logo .text-logo-sub {
    align-self: center
}

.footer .brand-text p {
    color: var(--ink)
}

.footer .brand-text .tag {
    font-size: 0.75rem;
    color: var(--muted-foreground)
}

.footer .desc {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.65
}

.footer ul {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem
}

.footer ul a {
    color: var(--ink);
    transition: color var(--transition-base)
}

.footer ul a:hover {
    color: var(--gold)
}

.footer .heading {
    color: var(--ink)
}

.footer .body-text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.65
}

.footer .body-text a {
    color: var(--ink);
    transition: color var(--transition-base)
}

.footer .body-text a:hover {
    color: var(--gold)
}

.footer .copyright {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(42, 36, 28, 0.58);
    margin-top: 2.5rem
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-fade-up {
    animation: fade-up 800ms var(--ease-smooth) both
}

.delay-1 {
    animation-delay: 150ms
}

.delay-2 {
    animation-delay: 300ms
}

.delay-3 {
    animation-delay: 450ms
}

@keyframes ken-burns {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.08)
    }
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-33.333%)
    }
}

.md-order-1 {
    order: 1
}

.md-order-2 {
    order: 2
}

@media (max-width:767px) {
    .mobile-first {
        order: -1
    }
}
