/* ======================================================
   Hotel Kornpforte – Stylesheet
   ====================================================== */

/* --- Custom properties --- */
:root {
  --gold:       #b8965a;
  --gold-light: #d4b07a;
  --gold-dark:  #8a6c38;
  --dark:       #1a1612;
  --dark-2:     #231f1a;
  --dark-3:     #2e2820;
  --light:      #f9f6f0;
  --light-2:    #ede8df;
  --white:      #ffffff;
  --text:       #3d3530;
  --text-muted: #7a6e64;
  --radius:     6px;
  --radius-lg:  12px;
  --shadow:     0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.18);
  --trans:      .3s ease;
  --max-w:      1200px;
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: clip;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.7;
  overflow-x: clip;
  width: 100%;
  position: relative;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: inherit;
}

em { font-style: italic; color: var(--gold); }

.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.section-desc {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* --- Layout helpers --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 5rem; }

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

.section-header .section-desc { margin-inline: auto; }

/* Section variants */
.section-light { background: var(--light); color: var(--text); }
.section-dark  { background: var(--dark);  color: var(--white); }
.section-dark  .section-eyebrow { color: var(--gold-light); }
.section-dark  .section-desc    { color: rgba(255,255,255,.6); }
.section-wine  { background: var(--dark-2); color: var(--white); }
.section-wine  .section-eyebrow { color: var(--gold-light); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .8em 2em;
  border-radius: var(--radius);
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--dark);
}

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

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-sm { padding: .55em 1.4em; font-size: .9rem; }
.btn-full { width: 100%; text-align: center; }


/* ======================================================
   NAVIGATION
   ====================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 22, 18, .97);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: background var(--trans), box-shadow var(--trans);
}

#navbar.scrolled {
  background: rgba(26, 22, 18, .97);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

.logo-sub {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  padding: .45em .8em;
  border-radius: var(--radius);
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--dark);
  padding: .45em 1.2em;
  margin-left: .5rem;
}
.nav-links .nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}


/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  /* Fallback: gradient wenn kein Bild vorhanden */
  background-color: var(--dark-3);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,22,18,.72) 0%,
    rgba(26,22,18,.55) 50%,
    rgba(26,22,18,.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 740px;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.hero-title--page { font-size: clamp(2rem, 5vw, 3.8rem); }

.hero-title em { color: var(--gold-light); }

.hero-tagline {
  font-size: clamp(.9rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: .05em;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { padding: .6em 1.5em; font-size: .88rem; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  z-index: 2;
  animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 32px; height: 32px; }

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


/* ======================================================
   HIGHLIGHTS BAR
   ====================================================== */
.highlights {
  background: var(--dark);
  padding-block: 2rem;
  border-top: 1px solid rgba(184,150,90,.2);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  min-width: 0;
}
.highlight-item > div { min-width: 0; overflow-wrap: break-word; }

.highlight-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  color: var(--gold);
}
.highlight-icon svg { width: 100%; height: 100%; }

.highlight-item strong {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: .15rem;
}
.highlight-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}


/* ======================================================
   ABOUT
   ====================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-text .btn { margin-top: 1rem; }

.about-image-block {
  position: relative;
  height: 500px;
}

.about-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-main {
  width: 78%; height: 85%;
  top: 0; left: 0;
  background-color: var(--dark-3);
}

.about-img-accent {
  width: 48%; height: 52%;
  bottom: 0; right: 0;
  background-color: var(--dark-2);
  border: 4px solid var(--light);
}

.about-badge {
  position: absolute;
  bottom: 3rem;
  right: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.about-badge span   { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }


/* ======================================================
   ROOMS
   ====================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.room-card {
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid rgba(255,255,255,.05);
  min-width: 0;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.room-card--featured { border-color: rgba(184,150,90,.3); }

.room-img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-2);
}

/* Zimmerbilder: zuerst echtes Foto, dann Gradient als Fallback.
   Wenn das Foto fehlt, wird automatisch der Gradient angezeigt. */
.room-img--single {
  background-image:
    url('img/single-room.jpg'),
    linear-gradient(135deg, #2a3a4a 0%, #1e2c3a 40%, #2e2318 100%);
}
.room-img--double {
  background-image:
    url('img/double-room.jpg'),
    linear-gradient(135deg, #3a2a1a 0%, #4a3420 40%, #2a1e10 100%);
}
.room-img--triple {
  background-image:
    url('img/triple-room.jpg'),
    linear-gradient(135deg, #4a3820 0%, #6b5230 40%, #3a2a14 100%);
}

.room-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3em .8em;
  border-radius: 100px;
  z-index: 1;
}

.room-body {
  padding: 1.75rem;
  color: var(--white);
}
.room-item {
  display: flex;
  flex-direction: column;
}
.room-item .room-card {
  flex: 1;
}
.room-btn {
  display: block;
  margin-top: 1rem;
  text-align: center;
}

.room-body h3 {
  font-size: 1.35rem;
  margin-bottom: .75rem;
  color: var(--white);
}

.room-body p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.room-features {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.5rem;
}

.room-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

.room-features svg {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.rooms-note {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,.45);
  font-size: .9rem;
  font-style: italic;
}


/* ======================================================
   WEINSTUBE
   ====================================================== */
.weinstube-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.weinstube-images {
  position: relative;
  height: 520px;
}

.ws-img {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.ws-img-1 {
  width: 72%; height: 78%;
  top: 0; left: 0;
  background-color: var(--dark-3);
}
.ws-img-2 {
  width: 55%; height: 52%;
  bottom: 0; right: 0;
  background-color: var(--dark-2);
  border: 3px solid rgba(184,150,90,.3);
}

.weinstube-text p {
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}

.ws-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.ws-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ws-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.ws-feature strong { display: block; color: var(--white); font-size: .95rem; }
.ws-feature span   { font-size: .85rem; color: rgba(255,255,255,.5); }


/* ======================================================
   FEINKOST
   ====================================================== */
.feinkost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feinkost-image {
  position: relative;
  min-height: 420px;
}

.feinkost-img {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--light-2);
  box-shadow: var(--shadow-lg);
}

.feinkost-text .btn { margin-top: 1.5rem; }


/* ======================================================
   AMENITIES
   ====================================================== */
#amenities { background: var(--light-2); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.amenity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform var(--trans), box-shadow var(--trans);
  border: 1px solid var(--light-2);
  min-width: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.amenity-icon {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  color: var(--gold);
}
.amenity-icon svg { width: 100%; height: 100%; }

.amenity-card h4 {
  font-size: 1rem;
  margin-bottom: .4rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.amenity-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ======================================================
   KOBLENZ SIGHTS
   ====================================================== */
.koblenz-section { border-top: 1px solid rgba(255,255,255,.05); }

.sights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.sight-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.03);
  transition: border-color var(--trans), background var(--trans);
  min-width: 0;
  overflow-wrap: break-word;
}
.sight-card:hover {
  border-color: rgba(184,150,90,.35);
  background: rgba(184,150,90,.05);
}

.sight-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184,150,90,.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.sight-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: .6rem;
}

.sight-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}


/* ======================================================
   LOCATION
   ====================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.location-address {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block: 2rem;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.loc-item svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: .15rem;
}

.loc-item strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .2rem; }
.loc-item span, .loc-item a { font-size: .95rem; color: var(--text); }
.loc-item a:hover { color: var(--gold); }

.anfahrt-info {
  border-top: 1px solid var(--light-2);
  padding-top: 1.5rem;
  margin-top: .5rem;
}

.anfahrt-info h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.anfahrt-info ul { display: flex; flex-direction: column; gap: .6rem; }
.anfahrt-info li { font-size: .9rem; color: var(--text-muted); }
.anfahrt-info strong { color: var(--text); }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

.map-link {
  display: block;
  text-align: center;
  padding: .75rem;
  background: var(--light-2);
  font-size: .82rem;
  color: var(--text-muted);
  transition: color var(--trans);
}
.map-link:hover { color: var(--gold); }


/* ======================================================
   CONTACT
   ====================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row         { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.25rem; }
.form-row--3-1    { grid-template-columns: minmax(0, 3fr) minmax(0, 1fr); }
.form-row--1-2    { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); }

.form-group { display: flex; flex-direction: column; gap: .45rem; min-width: 0; }
.form-group input,
.form-group select,
.form-group textarea { min-width: 0; max-width: 100%; width: 100%; }

.form-group label {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .75em 1em;
  color: var(--white);
  transition: border-color var(--trans), background var(--trans);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.09);
}

.form-group select option { background: var(--dark-2); color: var(--white); }

/* Multi-room selector */
.form-group--rooms { grid-column: 1 / -1; min-width: 0; }
.room-list { display: flex; flex-direction: column; gap: .5rem; min-width: 0; }
.room-row { display: flex; align-items: center; gap: .6rem; min-width: 0; flex-wrap: wrap; }
.room-row .room-type-select {
  flex: 1 1 140px;
  min-width: 0;
  appearance: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: .65em 1em;
  color: var(--white);
  font-size: .9rem;
  cursor: pointer;
  transition: border-color .2s;
}
.room-row .room-type-select:focus { outline: none; border-color: var(--gold); }
.room-row .room-type-select option { background: var(--dark-2); color: var(--white); }
.room-qty-wrap { display: flex; align-items: center; gap: .35rem; flex-shrink: 0; }
.room-qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.room-qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.room-qty-val { min-width: 1.4rem; text-align: center; font-size: .95rem; font-weight: 600; }
.room-remove-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.35);
  font-size: .85rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.room-remove-btn:hover { border-color: #cc3333; color: #cc3333; }
.add-room-btn { align-self: flex-start; }

.form-note {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}

/* Aside */
.contact-aside { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contact-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--trans);
}
.contact-link:last-child { border-bottom: none; }
.contact-link:hover { color: var(--gold-light); }
.contact-link svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.checkinout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ci-label { display: block; font-size: .75rem; color: rgba(255,255,255,.4); margin-bottom: .25rem; text-transform: uppercase; letter-spacing: .08em; }
.ci-time  { font-size: 1.1rem; font-family: 'Playfair Display', serif; color: var(--gold-light); }

.booking-badge {
  display: inline-block;
  background: #003580;
  color: var(--white) !important;
  padding: .6em 1.4em;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  transition: background var(--trans);
}
.booking-badge:hover { background: #004fb8; }


/* ======================================================
   WEITERE HOTELS
   ====================================================== */
.weitere-hotels {
  background: var(--dark-2);
  padding-block: 2.5rem;
  border-top: 1px solid rgba(184,150,90,.15);
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.hotel-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,150,90,.15);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color var(--trans);
}
.hotel-card:hover { border-color: var(--gold); }

.hotel-card-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .15rem;
}
.hotel-location {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.hotel-link {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gold-light);
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), color var(--trans);
}
.hotel-link:hover { color: var(--white); border-color: var(--white); }

@media (max-width: 700px) {
  .hotels-grid { grid-template-columns: 1fr; }
  .hotel-card  { flex-direction: column; align-items: flex-start; }
}


/* ======================================================
   FOOTER
   ====================================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  border-top: 1px solid rgba(184,150,90,.15);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 3.5rem;
}

.footer-brand .logo-sub { color: rgba(184,150,90,.7); }

.footer-brand p {
  margin-top: .75rem;
  font-size: .85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col li { font-size: .88rem; }
.footer-col a { transition: color var(--trans); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  padding-block: 1.2rem;
  font-size: .78rem;
  border-top: 1px solid rgba(255,255,255,.06);
}


/* ======================================================
   SCROLL-TO-TOP BUTTON
   ====================================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 900;
}
.scroll-top svg { width: 20px; height: 20px; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }


/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1024px) {
  .highlights-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenities-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sights-grid      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rooms-grid       { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner     { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .footer-brand     { grid-column: span 2; }
}

@media (max-width: 820px) {
  .about-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-block{ height: 340px; }
  .weinstube-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .weinstube-images { height: 320px; order: -1; }
  .ws-features      { grid-template-columns: 1fr; }
  .feinkost-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .feinkost-image   { min-height: 280px; order: -1; }
  .location-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid     { grid-template-columns: 1fr; }
  .form-row,
  .form-row--3-1,
  .form-row--1-2    { grid-template-columns: 1fr; gap: 1.25rem; }
}

@media (max-width: 768px) {
  .container        { padding-inline: 1.25rem; }
  .nav-inner        { padding: .9rem 1.25rem; }
  .logo-main        { font-size: 1.35rem; }
  .logo-sub         { font-size: .68rem; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 82vw);
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: .5rem;
    box-shadow: -4px 0 32px rgba(0,0,0,.4);
    transition: transform var(--trans);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.05rem; padding: .6em 0; width: 100%; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 1rem; text-align: center; }
  .nav-toggle { display: flex; z-index: 1001; }

  .highlights        { padding-block: 1.5rem; }
  .highlights-grid   { grid-template-columns: 1fr; gap: 1.25rem; }
  .rooms-grid        { grid-template-columns: 1fr; gap: 1.5rem; }
  .sights-grid       { grid-template-columns: 1fr; }
  .amenities-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .footer-inner      { grid-template-columns: 1fr; gap: 2rem; padding-block: 2.5rem; }
  .footer-brand      { grid-column: unset; }
  .footer-brand p    { max-width: none; }
  .section           { padding-block: 3.5rem; }
  .section-header    { margin-bottom: 2.5rem; }

  /* Card content tightening so nothing clips */
  .amenity-card      { padding: 1.25rem .9rem; }
  .amenity-card h4   { font-size: .92rem; }
  .amenity-card p    { font-size: .75rem; }
  .amenity-icon      { width: 40px; height: 40px; margin-bottom: .65rem; }

  .room-body         { padding: 1.25rem; }
  .room-img          { height: 200px; }

  .ws-img-1, .ws-img-2 { background-position: center; }

  .location-map iframe { height: 320px; }

  .hero-content      { padding: 2rem 1.25rem; }
  .hero-tagline      { margin-bottom: 1.75rem; }

  .scroll-top        { width: 42px; height: 42px; bottom: 1.25rem; right: 1.25rem; }

  .nav-links a       { min-height: 44px; display: flex; align-items: center; }
}

@media (max-width: 480px) {
  :root             { --radius-lg: 10px; }
  .container        { padding-inline: 1rem; }
  .nav-inner        { padding: .8rem 1rem; }
  .section          { padding-block: 3rem; }
  .section-header   { margin-bottom: 2rem; }
  .section-title    { font-size: 1.75rem; }
  .section-eyebrow  { font-size: .7rem; }
  .section-desc     { font-size: .95rem; }

  .hero             { min-height: 88vh; }
  .hero-title       { font-size: 2rem; }
  .hero-tagline     { font-size: .9rem; }
  .hero-actions     { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn{ width: 100%; }
  .hero-scroll      { bottom: 1.5rem; }
  .hero-scroll svg  { width: 26px; height: 26px; }

  /* One card per row at the smallest viewport — readable + no clipping */
  .amenities-grid   { grid-template-columns: 1fr; gap: .85rem; }
  .amenity-card     { padding: 1.1rem 1rem; display: flex; align-items: center; gap: .9rem; text-align: left; }
  .amenity-icon     { margin: 0; flex-shrink: 0; }
  .amenity-card h4  { margin-bottom: .15rem; }
  .amenity-card p   { font-size: .78rem; }

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

  .highlight-item   { gap: .85rem; }
  .highlight-icon   { width: 38px; height: 38px; }

  .room-body        { padding: 1.1rem; }
  .room-body h3     { font-size: 1.2rem; }

  .sight-card       { padding: 1.5rem 1.25rem; }
  .sight-number     { font-size: 2.4rem; margin-bottom: .5rem; }

  .about-image-block{ height: 280px; }
  .weinstube-images { height: 260px; }
  .feinkost-image   { min-height: 220px; }

  .footer-inner     { padding-block: 2rem; }
}

@media (max-width: 360px) {
  .container        { padding-inline: .85rem; }
  .hero-title       { font-size: 1.75rem; }
  .section-title    { font-size: 1.55rem; }
  .logo-main        { font-size: 1.2rem; }
  .logo-sub         { font-size: .62rem; letter-spacing: .08em; }
}

/* --- Scroll-in animations --- */
.fade-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* --- Active nav link --- */
.nav-links a.active { color: var(--gold-light) !important; }

/* --- Form message --- */
.form-msg {
  padding: .85em 1.1em;
  border-radius: var(--radius);
  font-size: .88rem;
  line-height: 1.5;
}
.form-msg--success {
  background: rgba(74, 170, 100, .15);
  border: 1px solid rgba(74, 170, 100, .35);
  color: #6ecf8a;
}
.form-msg--error {
  background: rgba(220, 80, 70, .12);
  border: 1px solid rgba(220, 80, 70, .3);
  color: #f08080;
}

/* ======================================================
   ANFRAGE PAGE
   ====================================================== */

/* Taller hero */
.anfrage-hero { min-height: 55vh; }

.anfrage-hero-overlay {
  background: linear-gradient(
    170deg,
    rgba(26,22,18,.85) 0%,
    rgba(26,22,18,.55) 55%,
    rgba(26,22,18,.82) 100%
  ) !important;
}

.anfrage-hero-content {
  padding-bottom: 4rem !important;
}

.anfrage-hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Info strip */
.anfrage-info-strip {
  background: var(--dark-2);
  border-top: 1px solid rgba(184,150,90,.25);
  border-bottom: 1px solid rgba(184,150,90,.12);
  padding: .85rem 0;
}

.anfrage-info-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.anfrage-info-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .3rem 2rem;
  flex: 1;
  justify-content: center;
}

.anfrage-info-item svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.anfrage-info-label {
  display: block;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.38);
  margin-bottom: .15rem;
}

.anfrage-info-val {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  font-weight: 500;
}

.anfrage-info-link { transition: color var(--trans); }
.anfrage-info-link:hover { color: var(--gold-light); }

.anfrage-info-divider {
  width: 1px;
  height: 38px;
  background: rgba(184,150,90,.2);
  flex-shrink: 0;
}

/* Section */
.anfrage-section {
  background: var(--dark);
  padding-block: 4.5rem 5.5rem;
}

.anfrage-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--white);
}

.anfrage-section-header .section-eyebrow { color: var(--gold-light); }
.anfrage-section-header .section-title   { color: var(--white); }

.anfrage-section-desc {
  margin-inline: auto;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  margin-top: .75rem;
}

/* Layout */
.anfrage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

/* Form card */
.anfrage-form {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(184,150,90,.15);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  gap: 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.anfrage-aside { min-width: 0; }
.anfrage-fieldset { min-width: 0; }

/* Fieldset groups */
.anfrage-fieldset {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.anfrage-fieldset--last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.anfrage-fieldset-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .1rem;
}

.anfrage-fieldset-title svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
}

/* Form footer */
.anfrage-form-footer {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 2rem;
}

/* Submit button */
.anfrage-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1em 2em;
  font-size: 1rem;
  letter-spacing: .05em;
}

.anfrage-submit-btn svg {
  width: 16px; height: 16px;
}

/* Aside */
.anfrage-aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.anfrage-aside-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,150,90,.14);
  border-top: 2px solid rgba(184,150,90,.45);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.anfrage-aside-card-icon {
  width: 38px; height: 38px;
  background: rgba(184,150,90,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.anfrage-aside-card-icon svg {
  width: 18px; height: 18px;
  color: var(--gold);
}

.anfrage-aside-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: .9rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Opening hours list */
.opening-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.opening-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  font-variant-numeric: tabular-nums;
}

.opening-hours-list li span:last-child {
  white-space: nowrap;
}

.opening-hours-list li span:first-child {
  color: rgba(255,255,255,.5);
}

/* Hint card special style */
.anfrage-aside-card--hint {
  background: linear-gradient(140deg, rgba(184,150,90,.1) 0%, rgba(184,150,90,.03) 100%);
  border-color: rgba(184,150,90,.3);
  border-top-color: var(--gold);
}

.anfrage-aside-hint-text {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.anfrage-aside-book-btn {
  width: 100%;
  text-align: center;
  padding: .7em 1.4em;
}

/* Responsive */
@media (max-width: 960px) {
  .anfrage-layout { grid-template-columns: minmax(0, 1fr); }
  .anfrage-info-item { padding-inline: 1.5rem; }
}

@media (max-width: 640px) {
  .anfrage-info-grid  { flex-direction: column; gap: .75rem; }
  .anfrage-info-item  { padding: .4rem 0; width: 100%; justify-content: flex-start; padding-inline: 1rem; }
  .anfrage-info-divider { width: 40px; height: 1px; }
  .anfrage-form       { padding: 1.25rem; }
  .anfrage-hero-cta   { flex-direction: column; gap: .75rem; }
}

@media (max-width: 360px) {
  .anfrage-form       { padding: .875rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: .95rem; }
}

/* Image placeholders (gradient fills shown when img/ folder is empty) */
.room-img,
.about-img,
.ws-img,
.hero-bg {
  background-color: var(--dark-3);
}

.about-img-main  { background-image: linear-gradient(135deg, #2e2820 30%, #3d3530 100%); }
.about-img-accent{ background-image: linear-gradient(135deg, #231f1a 30%, #2e2820 100%); }
.ws-img-1        { background-image: linear-gradient(135deg, #231f1a 30%, #2e2820 100%); }
.ws-img-2        { background-image: linear-gradient(135deg, #2e2820 30%, #3d3530 100%); }
.hero-bg         { background-image: url('background.jpg'), linear-gradient(160deg, #3d3530 0%, #1a1612 60%, #2e2820 100%); }
