/*
Theme Name: Neptun Theme
Theme URI: https://nordsee-neptun.de
Author: Nico & Antigravity Design
Author URI: https://nordsee-neptun.de
Description: Custom Premium WordPress Theme (Awwwards Level) for Hotel & Restaurant Neptun.
Version: 2.0.1
Text Domain: neptun
*/

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

:root {
  --white:  #FDFBF7;
  --chalk:  #F4EFEB;
  --bone:   #E4DDD3;
  --stone:  #B5AC9E;
  --slate:  #6A6157;
  --ink:    #12110F; /* slightly darker, richer */
  --sea:    #16444A;
  --sea-l:  #1A4A51;
  --sea-d:  #0f373c;
  --amber:  #8B551C;
  --amber-l:#B06B25;
  --serif-d:'Cormorant Garamond', Georgia, serif;
  --serif-b:'Libre Baskerville', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;
  
  --ease-slow: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.175, .885, .32, 1.1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* Base override for Lenis */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--sans);
  background: var(--chalk);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hide native cursor for pointer devices */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, input { cursor: none !important; }
}

/* Eliminate 300ms tap delay on touch devices */
a, button, .btn-fill, .btn-outline, .nav-cta, .room-link, .float-cta {
  touch-action: manipulation;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ─── NOISE TEXTURE ─── */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 250px;
}

/* ─── CUSTOM CURSOR (Awwwards Style) ─── */
#cursor {
  width: 10px; height: 10px;
  background: var(--sea); border-radius: 50%;
  position: fixed; top: 0; left: 0; z-index: 10000;
  pointer-events: none; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0; text-transform: uppercase; letter-spacing: 0.1em;
  font-family: var(--sans);
  transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-radius 0.4s var(--ease-out-expo), background 0.4s, font-size 0.4s;
  display: none;
}
@media (pointer: fine) { #cursor { display: flex; } }

#cursor.grow {
  width: 60px; height: 60px;
  background: rgba(255,255,255,1); mix-blend-mode: difference;
}

/* ─── MAGNETIC WRAPPER ─── */
.mag-wrap {
  display: inline-block; position: relative;
}

/* ─── TEXT REVEAL (GSAP Target) ─── */
.text-reveal { overflow: hidden; display: inline-block; padding-bottom: 8px; margin-bottom: -8px; vertical-align: top; }
.text-reveal span { display: inline-block; transform: translateY(120%) rotate(5deg); opacity: 0; transform-origin: left top; }

/* ─── IMAGE CLIP REVEAL (GSAP Target) ─── */
.clip-wrap {
  overflow: hidden; position: relative;
  /* GSAP starts this at clip-path: inset(100% 0 0 0); */
}
.clip-wrap img {
  transform: scale(1.2) translateZ(0); /* Will be animated down to 1 by GSAP */
}

/* ─── GPU LAYER HINTS — prevent iOS scroll jitter ─── */
img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
[data-scroll-speed],
.clip-wrap,
.clip-wrap img {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
[data-scroll-speed] {
  transform: translateZ(0);
}

/* ─── NAV ─── */
#nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  padding: 2.5rem 4rem; display: flex; justify-content: space-between;
  align-items: center; transition: padding 0.8s var(--ease-out-expo), background 0.8s, box-shadow 0.8s;
  pointer-events: none; /* Let clicks pass unless hovering link */
}
#nav * { pointer-events: auto; }
#nav.scrolled {
  padding: 1.2rem 4rem;
  background: rgba(244, 239, 235, 0.9); /* chalk */
  backdrop-filter: blur(15px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(228, 221, 211, 0.4);
}

.nav-links { display: flex; gap: 3rem; align-items: center; }
.nav-link {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; color: rgba(255,255,255,0.85); transition: color .4s;
  display: inline-block; padding: 1rem 0; /* Larger hit area */
}
#nav.scrolled .nav-link { color: var(--slate); }
.nav-link:hover { color: white !important; }
#nav.scrolled .nav-link:hover { color: var(--sea) !important; }

.nav-cta {
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500;
  color: white; background: transparent; border: 1px solid rgba(255,255,255,0.4);
  padding: 0.8rem 1.8rem; border-radius: 2rem;
  transition: background 0.4s, border-color 0.4s, color 0.4s, transform 0.4s;
}
.nav-cta:hover { background: white; color: var(--ink); border-color: white; }
#nav.scrolled .nav-cta { color: var(--slate); border-color: rgba(18,17,15,0.2); }
#nav.scrolled .nav-cta:hover { background: var(--ink); color: white; border-color: var(--ink); }

.nav-logo {
  display: flex; align-items: center; gap: 1.2rem;
  color: white; transition: color .4s;
}
#nav.scrolled .nav-logo { color: var(--ink); }

.nav-logo-icon {
  height: 55px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s, opacity 0.4s, transform 0.6s var(--ease-out-expo);
}
#nav.scrolled .nav-logo-icon { filter: brightness(0); opacity: 0.9; }
.nav-logo:hover .nav-logo-icon { transform: scale(1.1) rotate(5deg); }

.nav-logo-text {
  font-family: var(--serif-d); font-size: 2rem; font-weight: 300;
  letter-spacing: 0.18em; text-transform: uppercase;
}

/* FLOATING CTA */
.float-cta {
  position: fixed; bottom: 3rem; right: 3rem; z-index: 90;
  background: var(--sea); color: white;
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 400; text-align: center; line-height: 1.4;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transform: scale(0); opacity: 0; transition: transform 0.6s var(--ease-spring), opacity 0.6s, background 0.4s;
}
.float-cta.visible { transform: scale(1); opacity: 1; }
.float-cta:hover { background: var(--sea-d, #0f373c); box-shadow: 0 20px 50px rgba(22, 68, 74, 0.4); color: white; }

/* Mobile overlay */
#mob-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--chalk);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  clip-path: circle(0px at top right); transition: clip-path 1s var(--ease-out-expo);
  pointer-events: none;
}
#mob-menu.open { clip-path: circle(150% at top right); pointer-events: all; }
.mob-link {
  font-family: var(--serif-d); font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 300; font-style: italic; color: var(--ink);
  letter-spacing: -0.02em; padding: 0.2rem 0; opacity: 0; transform: translateY(20px);
  transition: color .3s;
}
#mob-menu.open .mob-link { opacity: 1; transform: translateY(0); transition: opacity 0.6s, transform 0.6s var(--ease-out-expo); }
.mob-link:nth-child(1) { transition-delay: 0.2s; }
.mob-link:nth-child(2) { transition-delay: 0.3s; }
.mob-link:nth-child(3) { transition-delay: 0.4s; }
.mob-link:nth-child(4) { transition-delay: 0.5s; }
.mob-link:nth-child(5) { transition-delay: 0.6s; }
.mob-link:nth-child(6) { transition-delay: 0.7s; }

.mob-link:hover { color: var(--sea); }
.mob-cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sea); color: white; border: 1px solid var(--sea);
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; padding: 1.2rem 3rem; margin-top: 1.5rem;
  font-style: normal; font-family: var(--sans);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s 0.75s, transform 0.6s 0.75s var(--ease-out-expo), background 0.4s, border-color 0.4s;
}
#mob-menu.open .mob-cta-btn { opacity: 1; transform: translateY(0); }
.mob-cta-btn:hover { background: var(--ink); border-color: var(--ink); color: white; }
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 6px; padding: 5px; position: relative; z-index: 101; pointer-events: auto;
}
.nav-burger span { display: block; width: 28px; height: 1px; background: white; transition: transform .6s var(--ease-out-expo), background .4s; }
#nav.scrolled .nav-burger span { background: var(--ink); }
#nav.mob-open .nav-burger span { background: var(--ink); }

/* ─── HERO ─── */
#hero {
  position: relative; height: 100svh; min-height: 700px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-photo { position: absolute; inset: -5% -5% -25% -5%; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,17,15,0.9) 0%, rgba(18,17,15,0.4) 30%, transparent 60%, rgba(18,17,15,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%; padding: 0 4rem 8rem;
  display: grid; grid-template-columns: 1fr auto; align-items: flex-end; gap: 4rem;
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); font-weight: 500; margin-bottom: 2rem; display: block;
}
.hero-h1 {
  font-family: var(--serif-d); font-weight: 300;
  color: white; line-height: 0.95; letter-spacing: -0.015em;
}
.hero-h1 .l1 { display: block; font-size: clamp(3.5rem, 8vw, 7rem); font-style: italic; color: white; }
.hero-h1 .l2 { display: block; font-size: clamp(2.5rem, 5.5vw, 4.5rem); margin-top: 0.2em; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.8); font-weight: 300;
  margin-top: 2.5rem; margin-bottom: 2.5rem; letter-spacing: 0.02em; line-height: 1.8; max-width: 650px;
}
.hero-cta-btns {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
}
.hero-scroll-line {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px; background: rgba(255,255,255,0.1);
}
.hero-scroll-line::after {
  content: ''; position: absolute; top:0; left:0; width:1px; height:100%; background:white;
  transform-origin: top; animation: sd 2s var(--ease-slow) infinite;
}
@keyframes sd { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 50.1% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ─── INFO STRIP ─── */
.info-strip {
  background: var(--chalk); border-bottom: 1px solid var(--bone);
  display: flex; align-items: stretch; z-index: 5; position: relative;
}
.info-cell {
  flex: 1; padding: 1.25rem 2rem;
  border-right: 1px solid var(--bone); display: flex; align-items: center; gap: 1rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); font-weight: 500;
}
.info-cell:last-child { border-right: none; }
.info-cell iconify-icon { color: var(--sea); font-size: 1.1rem; flex-shrink: 0; }

/* ─── HELPERS ─── */
.w { max-width: 1440px; margin: 0 auto; padding: 0 4rem; }
.section-pad { padding: clamp(8rem, 15vw, 12rem) 0; }
.tag {
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--amber); font-weight: 500; display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.tag::before { content: ''; display: block; width: 40px; height: 1px; background: var(--amber); }

/* ─── UNIFIED HEADING SCALE ─── */
/* Base: alle unlabeled Sektionen (Story, Gallery, etc.) */
.display-h {
  font-family: var(--serif-d);
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.display-h em { font-style: italic; color: var(--sea); }
.body-copy { font-family: var(--serif-b); font-size: 1.1rem; font-weight: 400; line-height: 2.0; color: var(--slate); }

.btn-fill {
  display: inline-flex; justify-content: center; align-items: center;
  background: var(--sea); color: white; border: 1px solid var(--sea);
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; padding: 1.2rem 2.8rem; border-radius: 0;
  white-space: nowrap;
  transition: background .4s, transform .4s, border-color .4s;
}
.btn-fill:hover { background: var(--ink); border-color: var(--ink); }

.btn-outline {
  display: inline-flex; justify-content: center; align-items: center;
  background: transparent; color: white; border: 1px solid rgba(255,255,255,0.4);
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; padding: 1.2rem 2.8rem; border-radius: 0;
  transition: background .4s, border-color .4s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ─── STORY ─── */
#about { background: var(--white); border-bottom: 1px solid var(--bone); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 8rem; }
.story-content { padding: 4rem 0; }
.story-img { aspect-ratio: 3/4; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── RESTAURANT ─── */
#restaurant { border-bottom: 1px solid var(--bone); background: var(--chalk); }
.rest-grid { display: grid; grid-template-columns: 55% 1fr; min-height: 100vh; }
.rest-photo { position: relative; height: 100%; }
.rest-photo .clip-wrap { width: 100%; height: 100%; }
.rest-photo img { width: 100%; height: 120%; margin-top:-10%; object-fit: cover; }
.rest-body { padding: 8rem 6rem; display: flex; flex-direction: column; justify-content: center; background: var(--white); position: relative; }
.rest-body::before {
  content: 'Restaurant'; position: absolute; bottom: 3rem; right: 2rem;
  font-family: var(--serif-d); font-size: clamp(4rem, 10vw, 8rem); font-weight: 300; font-style: italic;
  color: var(--chalk); line-height: 1; letter-spacing: -0.06em; pointer-events: none;
}
.rest-h { font-size: clamp(2.5rem, 3.5vw, 3.5rem); margin: 2rem 0 3rem; }
.rest-copy { max-width: 440px; margin-bottom: 4rem; }

/* ─── FEATURES ─── */
#features { background: var(--chalk); color: var(--ink); border-top: 1px solid var(--bone); }
.feat-head .tag { color: var(--amber-l); }
.feat-head .tag::before { background: var(--amber-l); }
.feat-head { margin-bottom: 8rem; }
.feat-head .display-h { margin-top: 2rem; color: var(--ink); }
.feat-head .display-h em { color: var(--amber-l); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--bone); border: 1px solid var(--bone); }
.feat-card { padding: 4rem; background: var(--white); position: relative; overflow: hidden;}
/* Hover beam */
.feat-card::before {
  content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--mouseX, 50%) var(--mouseY, 50%), rgba(0,0,0,0.03), transparent 50%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.feat-card:hover::before { opacity: 1; }
.feat-icon-wrap { width: 60px; height: 60px; border: 1px solid var(--bone); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--sea); margin-bottom: 2.5rem; transition: transform .6s var(--ease-out-expo), border-color .4s;}
.feat-card:hover .feat-icon-wrap { transform: scale(1.1) rotate(5deg); border-color: var(--sea); }
.feat-title { font-family: var(--serif-d); font-size: 1.6rem; font-weight: 300; color: var(--ink); margin-bottom: 1.2rem; letter-spacing: 0.02em; }
.feat-desc { font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: var(--slate); }

/* ─── ZIMMER ─── */
#hotel { background: var(--white); }
.hotel-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 8rem; gap: 4rem; }
.hotel-head .display-h { margin-top: 1.5rem; }
.hotel-head-right { font-size: 1.15rem; font-family: var(--serif-b); color: var(--slate); max-width: 440px; text-align: right; line-height: 1.9; }

.rooms-grid { display: grid; grid-template-columns: 36% 30% 28%; justify-content: space-between; align-items: start; gap: 0; }
.room-card:nth-child(2) { margin-top: 10rem; }
.room-card:nth-child(3) { margin-top: 3rem; }

.room-img { overflow: hidden; margin-bottom: 2.5rem; aspect-ratio: 3/4; }
.room-img img { width: 100%; height: 110%; object-fit: cover; transition: transform 1.8s var(--ease-out-expo); }
.room-card:hover .room-img img { transform: scale(1.05) translateY(-2%); }

.room-num { font-family: var(--serif-d); font-size: 1rem; font-style: italic; color: var(--stone); letter-spacing: 0.15em; margin-bottom: 1rem; }
.room-name { font-family: var(--serif-d); font-size: 2.2rem; font-weight: 300; color: var(--ink); margin-bottom: 0.8rem; }
.room-meta { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate); font-weight: 400; margin-bottom: 2rem; }
.room-link { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; color: var(--sea); display: inline-block; position: relative;}
.room-link::after { content:''; position: absolute; left:0; bottom:-4px; width:100%; height:1px; background: currentColor; transform-origin: right; transition: transform .4s var(--ease-out-expo); }
.room-card:hover .room-link::after { transform: scaleX(0); transform-origin: left;}

/* ─── GALLERY ─── */
#gallery { background: var(--chalk); border-top: 1px solid var(--bone); overflow: hidden; padding-bottom: 5rem; }
.gallery-label { padding: clamp(4rem, 8vw, 8rem) 4rem 4rem; display: flex; align-items: center; justify-content: space-between; }

.gallery-collage { display: grid; grid-template-columns: 1.5fr 0.8fr 1fr; gap: 15px; padding: 0 15px; height: 60vw; max-height: 800px; }
.gcol, .gc { position: relative; overflow: hidden; }
.gcol img, .gc img { width: 100%; height: 120%; margin-top:-10%; object-fit: cover; transition: transform 1.2s var(--ease-out-expo); filter: brightness(0.95);}
.gcol:hover img, .gc:hover img { transform: scale(1.02); filter: brightness(1); }
.gcol-stack { display: flex; flex-direction: column; gap: 15px; }

/* ─── SCHILLIG ─── */
#schillig { background: var(--white); border-top: 1px solid var(--bone); }
.schillig-grid { display: grid; grid-template-columns: 42% 1fr; gap: 10rem; align-items: center; }
.schillig-copy .display-h { margin-top: 2rem; margin-bottom: 2.5rem; }
.schillig-copy .body-copy { margin-bottom: 4rem; max-width: 480px; }
.schillig-list { list-style: none; display: flex; flex-direction: column; gap: 1.8rem; margin-bottom: 4rem; border-top: 1px solid var(--bone); padding-top: 3rem; }
.schillig-list li { display: flex; align-items: center; gap: 1.5rem; font-size: 1.05rem; font-weight: 300; color: var(--slate); border-bottom: 1px solid var(--bone); padding-bottom: 1.8rem; }
.schillig-list li span.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sea); flex-shrink: 0; }
.schillig-img-wrap { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.schillig-img-wrap img { width: 100%; height: 120%; margin-top:-10%; object-fit: cover; }

/* ─── SCROLL VELOCITY MARQUEE ─── */
.mq-velocity { padding: 3rem 0; overflow: hidden; background: var(--chalk); color: var(--ink); display: flex; white-space: nowrap; align-items: center; border-bottom: 1px solid var(--bone); border-top: 1px solid var(--bone); position: relative; z-index: 2; }
.mq-v-inner { display: flex; align-items: center; width: max-content; animation: mq-scroll 30s linear infinite; }
.mq-v-inner span { font-size: 3rem; font-family: var(--serif-d); font-weight: 300; font-style: italic; padding: 0 4rem; letter-spacing: -0.02em; flex-shrink: 0;}
.mq-v-inner span.dot { font-family: var(--sans); font-size: 1rem; color: var(--amber); font-style: normal; flex-shrink: 0;}

@keyframes mq-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── CONTACT ─── */
#kontakt { background: var(--chalk); }
.kontakt-wrap { display: grid; grid-template-columns: 1.2fr 1fr; min-height: 90vh; }
.kontakt-left { padding: clamp(6rem, 10vw, 10rem) clamp(4rem, 8vw, 8rem); display: flex; flex-direction: column; justify-content: center; position: relative;}
.kontakt-left .display-h { margin-top: 2rem; margin-bottom: 3rem; }
.kontakt-left .body-copy { max-width: 440px; margin-bottom: 5rem; }
.kontakt-details { display: flex; flex-direction: column; gap: 2rem; font-style: normal; }
.kd-row { display: flex; align-items: flex-start; gap: 1.5rem; font-size: 1.05rem; font-weight: 300; color: var(--slate); line-height: 1.7; }
.kd-row iconify-icon { color: var(--sea); margin-top: 2px; }
.kontakt-cta-btns { display: flex; gap: 1.5rem; margin-top: 5rem; flex-wrap: wrap; }

.kontakt-right { background: var(--white); padding: clamp(4rem, 8vw, 10rem); display: flex; flex-direction: column; justify-content: center; position: relative; }

/* Booking Card New */
.booking-card { display: flex; flex-direction: column; gap: 2rem; background: var(--white); padding: clamp(2rem, 5vw, 6rem); border: 1px solid var(--bone); position: relative; z-index: 1;}
.booking-card .btn-fill { letter-spacing: 0.18em; }
.booking-card h3 { font-family: var(--serif-d); font-size: clamp(2.5rem, 5vw, 3.2rem); font-weight: 300; font-style: italic; color: var(--ink); line-height: 1.1; margin-bottom: 0.5rem; transition: color .4s; }
.booking-card p { font-size: 1.1rem; line-height: 1.6; color: var(--slate); font-weight: 300; }
.booking-list { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; margin: 1.5rem 0 2rem; }
.booking-list li { display: flex; align-items: center; gap: 1.2rem; font-size: 1.05rem; font-weight: 300; color: var(--ink); border-bottom: 1px solid var(--bone); padding-bottom: 1rem; }
.booking-list li:last-child { border: none; }
.booking-list li iconify-icon { color: var(--sea); }

/* Forms (Hidden as per request, but keeping base styles for compatibility) */
.ff-wrapper { display: none; }

/* ─── FOOTER ─── */
footer { background: var(--white); color: var(--ink); padding: 6rem 4rem 3rem; position: relative; overflow: hidden; }
.footer-wm { position: absolute; bottom: -5rem; left: 50%; transform: translateX(-50%); font-family: var(--serif-d); font-size: clamp(14rem, 30vw, 28rem); font-weight: 300; font-style: italic; color: var(--ink); opacity: 0.03; white-space: nowrap; pointer-events: none; letter-spacing: -0.02em; }
.footer-grid { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 6rem; flex-wrap: wrap; gap: 4rem;}
.f-logo { height: 60px; width: auto; display: block; margin-bottom: 1.2rem; filter: brightness(0); opacity: 0.85; }
.f-brand { font-family: var(--serif-d); font-size: 2.5rem; font-weight: 300; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.f-addr { font-size: 0.95rem; font-weight: 300; color: var(--slate); line-height: 2.0; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 1.2rem; }
.f-links a { font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500; color: var(--slate); transition: color .3s; }
.f-links a:hover { color: var(--sea); }
.footer-bot { position: relative; z-index: 1; border-top: 1px solid var(--bone); padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--slate); }
.footer-soc { display: flex; gap: 2rem; }
.footer-soc a { color: var(--slate); font-size:1.4rem; transition: color .3s; }
.footer-soc a:hover { color: var(--sea); }


/* ─── SUB PAGES ─── */
.sub-page { background: var(--chalk); }
.sub-hero { padding: clamp(10rem, 15vw, 15rem) 2rem 6rem; border-bottom: 1px solid var(--bone); background: var(--white); }
.sub-hero .display-h { margin-top: 2rem; }

.sub-content { background: var(--white); }
.w.narrow { max-width: 900px; margin: 0 auto; }
.legal-block { margin-bottom: 4rem; }
.legal-block h2 { font-family: var(--serif-d); font-size: 2.2rem; font-weight: 300; font-style: italic; color: var(--ink); margin: 4rem 0 2rem; border-top: 1px solid var(--bone); padding-top: 4rem;}
.legal-block h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-block h3 { font-family: var(--sans); font-size: 0.9rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sea); margin-bottom: 1.5rem; }
.legal-block p { font-family: var(--serif-b); font-size: 1.15rem; line-height: 1.9; color: var(--slate); margin-bottom: 1.5rem; font-weight: 300; }
.legal-block a { border-bottom: 1px solid var(--sea); transition: color .3s; }
.legal-block a:hover { color: var(--sea); }
.legal-block strong { color: var(--ink); font-weight: 500; }

/* ─── MENU PAGE ─── */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; margin-top: 4rem; }
.menu-cat { margin-bottom: 6rem; }
.menu-cat-h { 
  font-family: var(--serif-d); font-size: 2.2rem; font-weight: 300; font-style: italic; 
  color: var(--ink); margin-bottom: 3rem; display: flex; align-items: center; gap: 2rem;
}
.menu-cat-h::after { content: ''; flex: 1; height: 1px; background: var(--bone); }
.menu-cat .menu-item { margin-bottom: 2.5rem; position: relative; }
.menu-item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; }
.menu-item-name { 
  font-family: var(--serif-b); font-size: 1.15rem; font-weight: 700; color: var(--ink); 
  display: flex; align-items: center; gap: 0.75rem; 
}
.menu-item-price { font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--sea); }
.menu-item-desc { font-family: var(--sans); font-size: 0.95rem; line-height: 1.6; color: var(--slate); font-weight: 300; }

/* Indicators */
.dot-indicator { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-veg { background: #4CAF50; }
.dot-vegan { background: #8BC34A; }
.dot-nonveg { background: #F44336; }
.menu-icon { color: var(--amber); font-size: 1.1rem; vertical-align: middle; }

.menu-legend div { transition: opacity 0.3s ease; }
.menu-legend div:hover { opacity: 0.7; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); gap:2rem; }
  .rooms-grid .room-card:nth-child(2) { margin-top: 4rem; }
  .rooms-grid .room-card:nth-child(3) { margin-top: 2rem; }
}
@media (max-width: 900px) {
  /* Heading scale auf Tablet/Mobile */
  .display-h { font-size: clamp(2.5rem, 8vw, 3.8rem); line-height: 1.15; }

  #nav { padding: 1.5rem 2rem; }
  #nav.scrolled { padding: 1.2rem 2rem; background: var(--chalk); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  
  .hero-content { grid-template-columns: 1fr; padding: 0 2rem 6rem; gap: 2rem; }
  .hero-eyebrow { font-size: 0.55rem; letter-spacing: 0.25em; white-space: nowrap; }
  .w { padding: 0 2rem; }
  .section-pad { padding: 6rem 0; }
  .gallery-intro { padding-top: 5rem; padding-bottom: 8rem; }
  .sub-hero { padding: 10rem 2rem 4rem; }
  
  .story-grid { grid-template-columns: 1fr; gap: 4rem; }
  .rest-grid { grid-template-columns: 1fr; }
  .rest-photo { height: 60vh; }
  .rest-body { padding: 5rem 2rem; }
  
  .feat-head { margin-bottom: 4rem; }
  .feat-grid { grid-template-columns: 1fr; }
  
  .hotel-head { flex-direction: column; align-items: flex-start; gap: 2rem; margin-bottom: 4rem; }
  .hotel-head-right { text-align: left; }
  .rooms-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .rooms-grid .room-card:nth-child(2) { margin-top: 0; }
  .rooms-grid .room-card:nth-child(3) { margin-top: 0; }
  
  .gallery-collage { grid-template-columns: 1fr; height: auto; padding: 0; gap:2px; }
  .gcol, .gc { aspect-ratio: 16/11; }
  .gcol-stack { gap: 2px; }
  
  .menu-grid { grid-template-columns: 1fr; gap: 4rem; margin-top: 2rem; }
  .menu-cat { margin-bottom: 5rem; }
  .menu-cat-h { font-size: 2rem; gap: 1rem; }
  
  .schillig-grid { grid-template-columns: 1fr; gap: 4rem; }
  .kontakt-wrap { grid-template-columns: 1fr; }
  .kontakt-left, .kontakt-right { padding: 5rem 2rem; }
  footer { padding: 4rem 2rem 3rem; }
  .footer-grid { flex-direction: column; align-items: flex-start; gap: 3rem; margin-bottom: 2.5rem;}
  .footer-bot { padding-top: 1.5rem; padding-bottom: 1rem; border-top: none; }
  .footer-copy { white-space: nowrap; font-size: 0.55rem; }
  .f-links { flex-direction: column; gap: 1rem; }
  .footer-wm { font-size: clamp(8rem, 40vw, 14rem); bottom: -2rem; opacity: 0.07; }
  
  .info-cell { padding: 1rem 1.25rem; font-size: 0.6rem; gap: 0.65rem; }

  .float-cta { bottom: 1.5rem; right: 1.5rem; width: 75px; height: 75px; font-size: 0.55rem; }
}
@media (max-width: 480px) {
  .info-cell { padding: 0.85rem 1rem; font-size: 0.56rem; }
  .hero-cta-btns { flex-direction: column; }
  .hero-cta-btns .btn-fill,
  .hero-cta-btns .btn-outline { width: 100%; justify-content: center; }
  .float-cta { bottom: 6rem; }
}

/* ─── BUTTONS ─── */
.btn-border-w {
  display: inline-flex; justify-content: center; align-items: center;
  background: transparent; color: white; border: 1px solid rgba(255,255,255,0.5);
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; padding: 1.2rem 2.8rem;
  transition: background .4s, border-color .4s, color .4s;
}
.btn-border-w:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }

.btn-sea {
  display: inline-flex; justify-content: center; align-items: center;
  background: transparent; color: var(--sea); border: 1px solid var(--sea);
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; padding: 1.2rem 2.8rem;
  transition: background .4s, border-color .4s, color .4s;
}
.btn-sea:hover { background: var(--sea); color: white; }

/* ─── HERO EXTRAS ─── */
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }

/* ─── MARQUEE ─── */
.mq {
  padding: 3rem 0; overflow: hidden; background: var(--chalk); color: var(--ink);
  display: flex; white-space: nowrap; align-items: center;
  border-bottom: 1px solid var(--bone); border-top: 1px solid var(--bone);
}
.mq-inner {
  display: flex; align-items: center; width: max-content;
  animation: mq-scroll 35s linear infinite;
}
.mq-inner span {
  font-size: clamp(1.4rem, 2.5vw, 2rem); font-family: var(--serif-d);
  font-weight: 300; font-style: italic; padding: 0 2.5rem;
  letter-spacing: -0.02em; flex-shrink: 0; color: var(--slate);
}

/* ─── FEATURES ITEM (alias for feat-card) ─── */
.feat-item {
  padding: 4rem; background: var(--white); position: relative; overflow: hidden;
}
.feat-item::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mouseX, 50%) var(--mouseY, 50%), rgba(0,0,0,0.03), transparent 50%);
  opacity: 0; transition: opacity .4s; pointer-events: none;
}
.feat-item:hover::before { opacity: 1; }
.feat-item:hover .feat-icon-wrap { transform: scale(1.1) rotate(5deg); border-color: var(--sea); }

/* ─── SCHILLIG CAPTION CARD ─── */
.schillig-caption-card {
  position: absolute; bottom: 2.5rem; left: 2.5rem;
  background: rgba(253,251,247,0.97); backdrop-filter: blur(8px);
  padding: 1.5rem 2rem; max-width: 260px; border: 1px solid var(--bone);
}
.schillig-caption-card .tag { font-size: 0.6rem; }
.schillig-caption-card p { font-size: 0.9rem; color: var(--slate); margin-top: 0.8rem; line-height: 1.7; }

/* ─── FOOTER EXTRAS ─── */
.f-tagline {
  font-size: 0.9rem; color: var(--slate); line-height: 1.9; font-weight: 300;
  max-width: 280px; margin-bottom: 2rem;
}
.f-col-title {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 600; color: var(--ink); margin-bottom: 2rem;
}

/* ─── CONTACT FORM ─── */
.form-intro {
  font-family: var(--serif-b); font-size: 1.05rem; color: var(--slate);
  line-height: 1.9; margin-bottom: 3.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.form-field label {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; color: var(--stone);
}
.form-field input, .form-field textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--bone);
  padding: 0.9rem 0; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  outline: none; transition: border-color .3s; width: 100%; resize: none;
  -webkit-appearance: none; border-radius: 0;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--stone); font-size: 0.9rem; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--sea); }
.submit-btn {
  background: var(--ink); color: white; border: 1px solid var(--ink);
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500; padding: 1.3rem 3rem; cursor: pointer; font-family: var(--sans);
  transition: background .4s, border-color .4s; margin-top: 0.5rem; width: 100%;
}
.submit-btn:hover { background: var(--sea); border-color: var(--sea); }

/* ─── SCROLL REVEAL (.sr) ─── */
html:not(.js-ready) .sr { opacity: 0; }

/* ─── SECTION PADDING ─── */
#schillig { padding: clamp(8rem, 15vw, 12rem) 0; }

/* ─── RESPONSIVE ADDITIONS ─── */
@media (max-width: 900px) {
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-fill, .btn-border-w, .btn-sea { width: 100%; justify-content: center; }
}
