/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:      #f8f4ef;
  --cream2:     #f0ebe2;
  --warm-dark:  #1c1810;
  --warm-dark2: #251f16;
  --espresso:   #2a2218;
  --gold:       #b8924a;
  --gold-light: #d4ab6a;
  --text-dark:  #3a3028;
  --text-mid:   #6b5e52;
  --text-dim:   #9e9088;
  --white:      #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, blockquote {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
}

h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--espresso); }
h3 { font-size: 1.4rem; font-weight: 400; color: var(--espresso); }

p { line-height: 1.8; font-size: 0.88rem; letter-spacing: 0.03em; }

a { text-decoration: none; color: inherit; }

.section-tag {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-tag.centered { text-align: center; }
.section-tag.light { color: var(--gold-light); }

.centered { text-align: center; }

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

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 3rem;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(248, 244, 239, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  box-shadow: 0 1px 0 rgba(184, 146, 74, 0.18);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
  transition: color 0.4s;
}
#navbar.scrolled .nav-logo { color: var(--espresso); }

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

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
#navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--gold); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.lang {
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
#navbar.scrolled .lang { color: var(--text-dim); }
.lang.active { color: var(--gold); }
#navbar.scrolled .lang.active { color: var(--gold); }
.lang-divider { color: rgba(255,255,255,0.3); }
#navbar.scrolled .lang-divider { color: var(--text-dim); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
#navbar.scrolled .nav-toggle span { background: var(--espresso); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero.jpg') center/cover no-repeat;
  background-color: var(--warm-dark2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28, 24, 16, 0.25) 0%,
    rgba(28, 24, 16, 0.5) 55%,
    rgba(28, 24, 16, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-subtitle {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-slogan {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(248, 244, 239, 0.88);
  margin-bottom: 2.5rem;
}

.cta-btn {
  display: inline-block;
  padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: top; }
}

/* ── ABOUT ── */
.about {
  padding: 8rem 0;
  background: var(--white);
}

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

.about-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream2);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-img::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 146, 74, 0.35);
  z-index: 1;
  pointer-events: none;
}
.about-img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img.no-img::after {
  content: 'Bild folgt';
  color: var(--text-dim);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.about-text h2 { margin-bottom: 1.8rem; }

.about-text p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.about-tags span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 146, 74, 0.4);
  padding: 0.4rem 1rem;
}

/* ── SERVICES ── */
.services {
  padding: 8rem 0;
  background: var(--cream);
}

.services h2 { margin-bottom: 4rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(184, 146, 74, 0.18);
}

.service-card {
  padding: 3rem 2rem;
  border-right: 1px solid rgba(184, 146, 74, 0.18);
  transition: background 0.4s;
  position: relative;
  background: var(--cream);
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--white); }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.service-card h3 { margin-bottom: 1rem; font-size: 1.25rem; }

.service-card p {
  color: var(--text-mid);
  font-size: 0.83rem;
  line-height: 1.9;
}

/* ── PHILOSOPHY ── */
.philosophy {
  position: relative;
  padding: 10rem 2rem;
  background: url('images/philosophy.jpg') center/cover no-repeat fixed;
  background-color: var(--warm-dark);
  text-align: center;
}

.philosophy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 24, 16, 0.75);
}

.philosophy-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

blockquote {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  letter-spacing: 0.02em;
}

/* ── CUISINE ── */
.cuisine {
  padding: 8rem 0;
  background: var(--white);
}

.cuisine h2 { margin-bottom: 2.5rem; }

.cuisine-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.cuisine-pills span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 146, 74, 0.4);
  padding: 0.5rem 1.4rem;
  transition: background 0.3s, color 0.3s;
}
.cuisine-pills span:hover {
  background: var(--gold);
  color: var(--white);
}

.cuisine-imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.cuisine-img {
  position: relative;
  overflow: hidden;
  background: var(--cream2);
  aspect-ratio: 1 / 1;
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, z-index 0s;
}
.cuisine-img.tall { aspect-ratio: 1 / 1; }

.cuisine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .cuisine-imgs .cuisine-img:hover {
    transform: scale(1.7);
    z-index: 20;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
  }
}

.cuisine-dots { display: none; }

/* ── CONTACT ── */
.contact {
  padding: 8rem 0;
  background: var(--cream);
}

.contact h2 { margin-bottom: 1rem; }

.contact-sub {
  color: var(--text-mid);
  margin-bottom: 4rem;
  font-size: 0.9rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(184, 146, 74, 0.22);
  background: var(--white);
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(184, 146, 74, 0.12);
}

.contact-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.contact-value {
  font-size: 0.78rem;
  color: var(--espresso);
  word-break: break-all;
}

/* ── SOCIAL LINKS ── */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.8rem;
  border: 1px solid rgba(184, 146, 74, 0.35);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--white);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.social-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.social-btn svg { flex-shrink: 0; }

/* ── FOOTER ── */
footer {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--espresso);
  border-top: 1px solid rgba(184, 146, 74, 0.2);
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold-light); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-link {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-legal-link:hover { color: var(--gold-light); }

/* ── LEGAL PAGES ── */
.legal {
  padding: 9rem 0 6rem;
  background: var(--white);
  min-height: 60vh;
}

.legal-content { max-width: 760px; }

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--espresso);
  margin-bottom: 2.5rem;
}

.legal-h2 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--espresso);
  margin: 2.2rem 0 0.8rem;
}

.legal-content p {
  color: var(--text-mid);
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-back {
  display: inline-block;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  text-decoration: none !important;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card { border-bottom: 1px solid rgba(184, 146, 74, 0.18); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { aspect-ratio: 4/3; }
  .cuisine-imgs { grid-template-columns: 1fr 1fr; }
  .cuisine-img.tall { aspect-ratio: 1/1; }
  .contact-cards { grid-template-columns: 1fr 1fr; max-width: 600px; }
}

@media (max-width: 700px) {
  #navbar { padding: 1.2rem 1.5rem; }
  #navbar.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 200;
    background: var(--cream);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: var(--text-dark) !important; }
  .nav-toggle { display: flex; z-index: 201; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .contact-cards { grid-template-columns: 1fr; }

  /* Swipeable 3D coverflow cuisine gallery */
  .cuisine-imgs {
    display: flex;
    align-items: center;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    margin: 0 -2rem;
    padding: 1.5rem 15% 2rem;
    perspective: 1200px;
    perspective-origin: 50% 50%;
  }
  .cuisine-imgs::-webkit-scrollbar { display: none; }
  .cuisine-img,
  .cuisine-img.tall {
    flex: 0 0 70%;
    aspect-ratio: 4 / 5;
    scroll-snap-align: center;
    transition: none;
    will-change: transform, opacity;
  }
  .cuisine-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: -0.5rem;
  }
  .cuisine-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(184, 146, 74, 0.3);
    transition: background 0.3s, transform 0.3s;
  }
  .cuisine-dot.active {
    background: var(--gold);
    transform: scale(1.4);
  }
}
