@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Josefin+Sans:wght@100;200;300;400&display=swap');

/* ─── TOKENS ─── */
:root {
    --primary:       #B8935A;
    --primary-light: #D4AF7A;
    --primary-dark:  #9A7A46;
    --accent:        #C4917B;
    --cream:         #FBF7F2;
    --cream-dark:    #F0E6D8;
    --text-dark:     #2E2720;
    --text-light:    #7A6A5E;
    --white:         #FFFFFF;
    --shadow:        rgba(184, 147, 90, 0.15);
    --shadow-soft:   rgba(46, 39, 32, 0.06);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ─── BASE ─── */
body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    background: var(--cream);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

p { line-height: 1.85; }

/* ─── LAYOUT ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── HEADER / NAV ─── */
header {
    position: fixed;
    inset: 0 0 auto 0;
    background: rgba(251, 247, 242, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(184, 147, 90, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 62px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 1.65rem;
    letter-spacing: 0.06em;
    color: var(--primary);
    line-height: 1;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Language switcher */
.lang-switcher {
    display: flex;
    gap: 0;
    align-items: center;
    border: 1px solid rgba(184, 147, 90, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.lang-btn {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-right: 1px solid rgba(184, 147, 90, 0.2);
    padding: 0.3rem 0.55rem;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-btn:last-child { border-right: none; }

.lang-btn:hover { color: var(--primary); background: rgba(184, 147, 90, 0.04); }

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.9rem 2.6rem;
    border-radius: 2px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(184, 147, 90, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 147, 90, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 35%, rgba(184, 147, 90, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 65%, rgba(212, 175, 122, 0.05) 0%, transparent 45%);
    animation: drift 22s ease-in-out infinite alternate;
}

@keyframes drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(1.5%, 1.5%) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-tagline {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 0.75rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.8rem;
    opacity: 0.9;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 2.8rem;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    margin: 3.5rem auto 0;
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(46, 39, 32, 0.14);
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ─── SECTIONS ─── */
.section { padding: 7rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    letter-spacing: 0.04em;
}

.section-header p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ─── ABOUT ─── */
.about { background: var(--cream); }

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

.about-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow-soft);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.about-content h3 {
    font-size: 2.1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.4rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 2.2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.feature-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(184, 147, 90, 0.1) 0%, rgba(212, 175, 122, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.feature span {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dark);
}

/* ─── SERVICES ─── */
.services {
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--cream);
    padding: 3rem 2.2rem;
    border-radius: 4px;
    text-align: center;
    border: 1px solid rgba(184, 147, 90, 0.07);
    box-shadow: 0 4px 30px var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(184, 147, 90, 0.12);
}

.service-icon {
    width: 78px;
    height: 78px;
    background: linear-gradient(135deg, rgba(184, 147, 90, 0.1) 0%, rgba(196, 145, 123, 0.08) 100%);
    border: 1px solid rgba(184, 147, 90, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 1.6rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.45rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.service-card p {
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* ─── DIRECTIONS ─── */
.directions { background: var(--cream); }

.directions-address {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-top: 0.6rem;
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2.5rem;
}

.directions-text p {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.95;
}

.map-wrapper {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.map-wrapper iframe { display: block; }

/* ─── CTA ─── */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

.cta p {
    font-style: italic;
    font-size: 1.15rem;
    opacity: 0.88;
    margin-bottom: 2.5rem;
}

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

.cta .btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* ─── FOOTER ─── */
footer {
    background: var(--text-dark);
    color: var(--cream);
    padding: 3rem 0;
    text-align: center;
}

footer p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.55;
}

.footer-links { margin-top: 0.9rem; }

.footer-links a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.45;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 0.9; }

/* ─── BOOKING PAGE ─── */
.booking-page {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

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

.booking-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.booking-header h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
}

.booking-header p {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
}

.slots-section {
    background: var(--cream);
    padding: 2.2rem;
    border-radius: 4px;
    border: 1px solid rgba(184, 147, 90, 0.07);
    box-shadow: 0 4px 30px var(--shadow-soft);
    margin-bottom: 2rem;
}

.slots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.6rem;
}

.slots-header h2 {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
}

.slots-header span {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 0.9rem;
}

.slot-card {
    padding: 1.1rem;
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.slot-card:hover { border-color: var(--primary); background: rgba(184, 147, 90, 0.03); }

.slot-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(184, 147, 90, 0.06) 0%, rgba(212, 175, 122, 0.04) 100%);
}

.slot-card.unavailable { opacity: 0.4; cursor: not-allowed; }

.slot-date {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.slot-time {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.booking-form {
    background: var(--cream);
    padding: 2.2rem;
    border-radius: 4px;
    border: 1px solid rgba(184, 147, 90, 0.07);
    box-shadow: 0 4px 30px var(--shadow-soft);
}

.form-group { margin-bottom: 1.6rem; }

.form-group label {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    background: var(--cream);
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--cream);
}

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

.selected-slot-display {
    background: linear-gradient(135deg, rgba(184, 147, 90, 0.06) 0%, rgba(212, 175, 122, 0.04) 100%);
    border: 1px solid rgba(184, 147, 90, 0.15);
    padding: 1rem;
    border-radius: 2px;
    margin-bottom: 1.8rem;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.submit-btn { width: 100%; padding: 1.1rem; font-size: 0.72rem; margin-top: 0.5rem; }

.success-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    font-size: 2rem;
    color: var(--white);
}

.success-message h2 {
    font-size: 2rem;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2.2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 1rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 1rem;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    display: none;
}

/* ─── ADMIN PAGE ─── */
.admin-page {
    padding-top: 120px;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

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

.login-form {
    max-width: 380px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: var(--cream);
    border-radius: 4px;
    border: 1px solid rgba(184, 147, 90, 0.08);
    box-shadow: 0 8px 40px var(--shadow-soft);
    text-align: center;
}

.login-form h1 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
}

.login-form input {
    width: 100%;
    padding: 0.95rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    background: var(--cream);
}

.admin-dashboard { display: none; }

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.admin-header h1 {
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
}

.admin-section {
    background: var(--cream);
    padding: 2.2rem;
    border-radius: 4px;
    border: 1px solid rgba(184, 147, 90, 0.07);
    box-shadow: 0 4px 30px var(--shadow-soft);
    margin-bottom: 2rem;
}

.admin-section h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.6rem;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.bookings-table th {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--cream-dark);
}

.bookings-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--text-dark);
}

.bookings-table tr:hover td { background: var(--cream); }

.slots-management {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
}

.slots-management input {
    padding: 0.75rem 1rem;
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    background: var(--cream);
}

.slots-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.9rem;
}

.admin-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1rem;
    background: var(--cream);
    border-radius: 2px;
    border: 1px solid var(--cream-dark);
}

.admin-slot-info .date {
    font-weight: 500;
    font-size: 0.95rem;
}

.admin-slot-info .time {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 200;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.delete-slot {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0.25rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.delete-slot:hover { opacity: 1; }

.no-bookings {
    text-align: center;
    padding: 2rem;
    font-style: italic;
    color: var(--text-light);
    font-size: 1rem;
}

/* ─── IMPRESSUM PAGE ─── */
.impressum-page {
    padding: 140px 0 7rem;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

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

.impressum-container h1 {
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(184, 147, 90, 0.15);
    letter-spacing: 0.02em;
}

.impressum-block {
    background: var(--cream);
    padding: 2rem 2.2rem;
    border-radius: 4px;
    border: 1px solid rgba(184, 147, 90, 0.07);
    box-shadow: 0 4px 24px var(--shadow-soft);
    margin-bottom: 1.2rem;
}

.impressum-block h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.impressum-block p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.95;
    margin-bottom: 1rem;
}

.impressum-block p:last-child { margin-bottom: 0; }

.impressum-block a { color: var(--primary); text-decoration: none; }
.impressum-block a:hover { text-decoration: underline; }

.impressum-note { font-style: italic; font-size: 0.95rem; opacity: 0.75; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .directions-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; }
    .nav-links { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-features { grid-template-columns: 1fr; }
    .slots-grid { grid-template-columns: 1fr 1fr; }
    .admin-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
    .logo-text { font-size: 1.4rem; }
    .hero-image { max-width: 100%; }
}

/* ─── CONTACT SECTION ─── */
.contact {
    background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 680px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding: 1.8rem 2.2rem;
    background: var(--cream);
    border: 1px solid rgba(184, 147, 90, 0.2);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(46, 39, 32, 0.05);
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 36px rgba(184, 147, 90, 0.15);
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FBF7F2;
    flex-shrink: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

@media (max-width: 600px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   PRINT / A4 PDF
   ═══════════════════════════════════════════════ */
@media print {

    /* ─ Seitenformat ─ */
    @page {
        size: A4 portrait;
        margin: 2cm 2.2cm 2.5cm 2.2cm;
    }

    @page :first {
        margin-top: 1.5cm;
    }

    /* ─ Basis ─ */
    *, *::before, *::after {
        background: transparent !important;
        box-shadow: none !important;
        text-shadow: none !important;
        animation: none !important;
        transition: none !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    body {
        font-size: 10.5pt;
        line-height: 1.6;
        color: #2E2720 !important;
        background: #fff !important;
        width: 100%;
    }

    /* ─ Elemente ausblenden ─ */
    header,
    .lang-switcher,
    .hero-buttons,
    .nav-links,
    .cta,
    .map-wrapper,
    .directions-text,
    .booking-page,
    footer .footer-links,
    .contact-card svg,
    iframe {
        display: none !important;
    }

    /* ─ Kein Fixed/Sticky mehr ─ */
    header { position: static !important; }

    /* ─ Container: volle Breite ─ */
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    /* ─ Hero: kompakt, kein Vollbild ─ */
    .hero {
        min-height: auto !important;
        padding: 1.5cm 0 1cm !important;
        text-align: left;
        background: transparent !important;
    }

    .hero::before { display: none; }

    .hero h1 {
        font-size: 26pt !important;
        margin-bottom: 0.4cm;
    }

    .hero-tagline {
        font-size: 8pt !important;
        letter-spacing: 0.3em;
        margin-bottom: 0.3cm;
    }

    .hero-subtitle {
        font-size: 11pt !important;
        max-width: 100%;
        margin: 0 0 0.4cm !important;
    }

    .hero-image {
        max-width: 8cm !important;
        margin: 0.5cm 0 0 !important;
        page-break-inside: avoid;
    }

    /* ─ About: nebeneinander auf A4 ─ */
    .about { background: transparent !important; }

    .about-grid {
        grid-template-columns: 6cm 1fr !important;
        gap: 1.5cm !important;
        page-break-inside: avoid;
    }

    .about-image {
        max-height: 8cm;
        overflow: hidden;
    }

    .about-photo {
        max-height: 8cm;
        object-fit: cover;
    }

    .about-content h3 { font-size: 18pt !important; }
    .about-content p  { font-size: 10pt !important; }

    .about-features {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.4cm !important;
        margin-top: 0.6cm !important;
    }

    .feature span { font-size: 7.5pt !important; }

    /* ─ Section-Abstände verkleinern ─ */
    .section { padding: 1cm 0 !important; }

    .section-header { margin-bottom: 0.8cm !important; }
    .section-header h2 { font-size: 20pt !important; }
    .section-header p  { font-size: 8pt !important; }

    /* ─ Services: 3-spaltig auf A4 ─ */
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6cm !important;
    }

    .service-card {
        padding: 0.6cm !important;
        border: 1px solid #D4AF7A !important;
        page-break-inside: avoid;
    }

    .service-icon {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 0.4cm !important;
        border: 1px solid #D4AF7A !important;
    }

    .service-card h3 { font-size: 12pt !important; }
    .service-card p  { font-size: 9pt !important; }

    /* ─ Directions: nur Text + Adresse ─ */
    .directions-grid {
        grid-template-columns: 1fr !important;
    }

    .directions-address {
        font-size: 8.5pt !important;
        margin-bottom: 0.3cm;
    }

    /* ─ Kontakt: beide Karten nebeneinander ─ */
    .contact-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.6cm !important;
        max-width: 100% !important;
    }

    .contact-card {
        border: 1px solid #D4AF7A !important;
        padding: 0.5cm 0.7cm !important;
        page-break-inside: avoid;
    }

    .contact-icon {
        width: 36px !important;
        height: 36px !important;
        background: #D4AF7A !important;
    }

    .contact-label { font-size: 7pt !important; }
    .contact-value { font-size: 10pt !important; }

    /* ─ URLs sichtbar machen ─ */
    a[href^="mailto"]::after {
        content: " (" attr(href) ")";
        font-size: 8pt;
        color: #7A6A5E;
    }

    a[href^="https://wa.me"]::after {
        content: " (+34 711 015 232)";
        font-size: 8pt;
        color: #7A6A5E;
    }

    /* ─ Footer minimal ─ */
    footer {
        background: transparent !important;
        color: #7A6A5E !important;
        padding: 0.4cm 0 0 !important;
        border-top: 1px solid #D4AF7A;
        font-size: 7.5pt !important;
    }

    footer p { opacity: 1 !important; color: #7A6A5E !important; }

    /* ─ Seitenumbrüche ─ */
    .about   { page-break-before: always; }
    .services { page-break-before: auto; }
    .contact  { page-break-inside: avoid; }
}
