/* ==========================================================================
   Golden Rooms Neersen — Stylesheet

   Die Farben stammen direkt aus der Visitenkarte und dem Logo.
   Blush, Altrosa und Anthrazit sind exakt ausgelesen. Terrakotta und die
   Linienfarbe sind daraus abgeleitet, damit Schrift lesbar bleibt:
   Altrosa auf Blush erreicht nur 1,7:1 und darf nie Text tragen.
   ========================================================================== */

:root {
  /* Marke — aus Visitenkarte und Logo ausgelesen */
  --paper:      #faf8f6;   /* Seitenhintergrund, warmes Off-White */
  --stone:      #efe9e4;   /* zweite Flächenfarbe, neutral */
  --blush:      #f8ede9;   /* Kartenton, für Akzentflächen */
  --blush-deep: #f1ded7;
  --rose:       #e1ad9e;   /* der Schwung auf der Karte — nur als Fläche */
  --rose-dark:  #94452e;   /* abgeleitet, für Links: 5,8:1 auf Blush */
  --ink:        #201c20;   /* Schriftfarbe der Karte */
  --peach:      #daac8d;   /* Bettgestell im Logo */
  --taupe:      #c2a590;   /* Bettgestell im Logo, rechte Hälfte */
  --star:       #9d712f;   /* Bewertungssterne, 3,8:1 auf Blush */

  --line:  #e3dbd5;
  --slate: #6b615c;
  --white: #ffffff;

  /* Typografie — Poppins entspricht der Schrift der Visitenkarte */
  --sans:  "Poppins", "Century Gothic", "Helvetica Neue", Arial, sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  --t--1: 0.875rem;
  --t-0:  1.0625rem;
  --t-1:  1.3125rem;
  --t-2:  1.625rem;
  --t-3:  2.0625rem;
  --t-4:  2.875rem;
  --t-5:  3.75rem;

  --gutter: 1.5rem;
  --max:    72rem;
  --narrow: 38rem;
}

/* --- Reset ------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: var(--t-0);
  line-height: 1.65;
  font-optical-sizing: auto;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--rose-dark); text-underline-offset: .18em; }
a:hover { color: var(--ink); }

:focus-visible { outline: 3px solid var(--rose-dark); outline-offset: 2px; }

.wrap {
  width: 100%; max-width: var(--max);
  margin-inline: auto; padding-inline: var(--gutter);
}

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--paper);
  padding: .75rem 1.25rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* --- Typografie -------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 .6em;
  text-wrap: balance;
  /* Deutsche Komposita sind lang. Ohne Trennung sprengen sie
     auf schmalen Displays die Seite. */
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 { font-size: clamp(1.95rem, 6.4vw, var(--t-4)); }
h2 { font-size: clamp(1.6rem, 5.2vw, var(--t-3)); }
h3 { font-size: var(--t-1); }
h4 { font-size: var(--t-0); letter-spacing: 0; }

p { margin: 0 0 1.1em; max-width: 68ch; text-wrap: pretty; }

.kicker {
  font-family: var(--sans); font-size: var(--t--1); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--rose-dark); margin: 0 0 .75rem;
}
.section--ink .kicker { color: var(--rose); }

.lede { font-size: var(--t-1); line-height: 1.55; color: var(--slate); text-wrap: pretty; }

/* Sachangaben im Poppins, Fließtext in der Serife:
   der Schriftwechsel trennt Fakten von Erzählung. */
.data { font-family: var(--sans); font-variant-numeric: tabular-nums; }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
/* Abschnitte unterhalb des sichtbaren Bereichs werden erst beim
   Heranscrollen gezeichnet. Spart Rechenzeit beim Seitenaufbau. */
.section:not(.hero) { content-visibility: auto; contain-intrinsic-size: auto 600px; }
.section--sand { background: var(--stone); }
.section--ink  { background: var(--ink); color: var(--paper); }
.section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink a { color: var(--rose); }

.section__head { max-width: var(--narrow); margin-bottom: 3.25rem; }

/* --- Markenschwung ----------------------------------------------------- */
/* Der Bogen von der Visitenkarte, als Abschluss vor der Fußzeile. */

.section--rose { background: var(--blush); }
.section--rose .lede { color: var(--ink); }

.cta-band { position: relative; background: var(--blush); overflow: hidden; padding-bottom: clamp(7rem, 12vw, 11rem); }
.cta-band::before {
  content: ""; position: absolute; z-index: 0;
  right: -18%; top: 92%;
  width: 130%; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--rose);
}
.cta-band > * { position: relative; z-index: 1; }
/* Auf dem Bogen muss der Text dunkel bleiben, Graustufen sind dort zu blass */
.cta-band .lede { color: var(--ink); }

/* --- Kopfzeile --------------------------------------------------------- */

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.masthead {
  transition: box-shadow .25s ease, background-color .25s ease;
}
.masthead__inner {
  display: flex; align-items: center; gap: 1.25rem;
  min-height: 5.25rem;
  transition: min-height .25s ease;
}
.masthead__logo { display: flex; align-items: center; min-height: 44px; }
.masthead__logo img { height: 46px; width: auto; transition: height .25s ease; }

.masthead.is-scrolled { box-shadow: 0 1px 12px rgba(32,28,32,.07); }
.masthead.is-scrolled .masthead__inner { min-height: 4rem; }
.masthead.is-scrolled .masthead__logo img { height: 34px; }

.nav { margin-left: auto; }

.nav__list {
  display: flex; gap: 1.5rem;
  list-style: none; margin: 0; padding: 0;
  font-family: var(--sans); font-size: var(--t--1); font-weight: 500;
}
.nav__list a {
  position: relative;
  display: inline-flex; align-items: center; min-height: 44px;
  color: var(--ink); text-decoration: none;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--rose-dark);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav__list a:hover::after,
.nav__list a:focus-visible::after { transform: scaleX(1); }
.nav__list a[aria-current="page"]::after { transform: scaleX(1); background: var(--ink); }
/* Sprachwechsel: eigenes Bedienelement, nicht im Klappmenue versteckt */
.lang-switch {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 44px; padding: .5rem .8rem;
  border: 1px solid var(--line);
  font-family: var(--sans); font-size: var(--t--1); font-weight: 600;
  color: var(--ink); text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease;
}
.lang-switch:hover { border-color: var(--ink); background: var(--stone); color: var(--ink); }
.lang-switch__flag { display: block; flex: none; }

@media (max-width: 34rem) {
  /* Auf schmalen Geraeten genuegt die Flagge, der Platz wird gebraucht. */
  .lang-switch__text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .lang-switch { padding: .5rem .6rem; }

  /* Vier Bedienelemente passen hier nicht nebeneinander, die Zeile
     bricht um. Dafuer wird sie beim Scrollen deutlich flacher. */
  .masthead__inner { min-height: 0; padding-block: .45rem; gap: .45rem; }
  .masthead.is-scrolled .masthead__inner { padding-block: .25rem; gap: .3rem; }
  .masthead.is-scrolled .masthead__logo { min-height: 0; }
  .masthead.is-scrolled .masthead__logo img { height: 26px; }
  .masthead.is-scrolled .lang-switch,
  .masthead.is-scrolled .tel-cta,
  .masthead.is-scrolled .nav-toggle { min-height: 38px; }
}

.tel-cta {
  display: inline-flex; align-items: center; min-height: 44px;
  font-family: var(--sans); font-weight: 600; font-size: var(--t--1);
  background: var(--ink); color: var(--white);
  padding: .5rem 1.15rem; text-decoration: none; white-space: nowrap;
}
.tel-cta:hover { background: var(--rose-dark); color: var(--white); }

.nav-toggle {
  display: none;
  min-height: 44px;
  font-family: var(--sans); font-size: var(--t--1); font-weight: 600;
  background: none; border: 1px solid var(--line); color: var(--ink);
  padding: .5rem .9rem; cursor: pointer;
}

@media (max-width: 60rem) {
  .masthead__inner { flex-wrap: wrap; gap: .5rem; }
  .masthead__logo { order: 0; min-width: 0; }
  .masthead__logo img { height: 34px; max-width: 34vw; object-fit: contain; }
  .lang-switch { order: 1; margin-left: auto; }
  .tel-cta { order: 2; font-size: 0.75rem; padding: .55rem .7rem; }
  .nav-toggle { display: block; order: 3; margin-left: 0; }
  .nav { order: 4; margin-left: 0; width: 100%; display: none; }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; gap: 0; padding-bottom: 1rem; }
  .nav__list li { border-top: 1px solid var(--line); }
  .nav__list a { display: block; padding: .85rem 0; border-bottom: 0; }
}

@media (max-width: 24rem) {
  .tel-cta { font-size: 0.7rem; padding: .5rem .6rem; }
  .masthead__logo img { height: 28px; max-width: 30vw; }
  .nav-toggle { font-size: 0.75rem; padding: .5rem .65rem; }
}

/* --- Titelbereich ------------------------------------------------------ */

/* Zweigeteilt: Text auf Blush, Foto daneben. Kein Text auf dem Bild,
   damit sich Textfeld und Foto nie gegenseitig verdecken koennen. */

.hero { background: var(--stone); }

.hero__media { aspect-ratio: 16 / 9; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__panel { padding: 2.25rem var(--gutter) 2.75rem; }
.hero__panel h1 { margin-bottom: .35em; }
.hero__panel p  { color: var(--slate); margin-bottom: 1.5rem; }
.hero__panel .spec { border-top: 2px solid var(--rose); }

@media (min-width: 62rem) {
  .hero { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; }
  .hero__media { order: 2; aspect-ratio: auto; min-height: 28rem; }
  .hero__panel {
    order: 1;
    display: flex; flex-direction: column; justify-content: center;
    padding: 3.25rem 3.5rem 3.25rem
             max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  }
}

/* Datenblatt: die harten Fakten, sofort sichtbar */
.spec {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  font-family: var(--sans);
}
.spec > div { padding: .85rem 0; border-bottom: 1px solid var(--line); }
.spec > div:nth-child(odd) { padding-right: 1rem; }
.spec dt { font-size: 0.8125rem; color: var(--slate); font-weight: 500; margin-bottom: .1rem; }
.spec dd { margin: 0; font-size: var(--t-1); font-weight: 600; letter-spacing: -0.01em; }
.spec dd small { font-size: var(--t--1); font-weight: 400; color: var(--slate); }

/* --- Knöpfe ------------------------------------------------------------ */

.btn {
  display: inline-block;
  font-family: var(--sans); font-weight: 600; font-size: var(--t-0);
  padding: .85rem 1.6rem;
  text-decoration: none; cursor: pointer;
  border: 2px solid var(--ink);
  background: var(--ink); color: var(--white);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .12s ease;
}
.btn:hover { background: var(--rose-dark); border-color: var(--rose-dark); color: var(--white); }
.btn:active { transform: translateY(1px); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn--rose { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.btn--rose:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

/* Für dunkle Abschnitte */
.btn--light { background: transparent; color: var(--white); border-color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --- Raster ------------------------------------------------------------ */

.cols { display: grid; gap: 2.5rem; }
@media (min-width: 48rem) { .cols--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 38rem) {
  .cols--3 { grid-template-columns: repeat(2, 1fr); }
  /* Die dritte Karte fuellt sonst nur eine halbe Zeile. */
  .cols--3 > .rate:last-child { grid-column: 1 / -1; }
  .cols--3 > .rate:last-child .btn { align-self: flex-start; }
}
@media (min-width: 60rem) {
  .cols--3 { grid-template-columns: repeat(3, 1fr); }
  .cols--3 > .rate:last-child { grid-column: auto; }
  .cols--3 > .rate:last-child .btn { align-self: stretch; }
}
@media (min-width: 56rem) { .cols--side { grid-template-columns: 1fr 1.4fr; gap: 5rem; } }

/* --- Entfernungen ------------------------------------------------------ */

.distances { list-style: none; margin: 0; padding: 0; font-family: var(--sans); }
.distances li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--line);
}
.distances .place { font-weight: 500; }
.distances .km { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.section--ink .distances li { border-bottom-color: rgba(255,255,255,.16); }

/* --- Ausstattungslisten ------------------------------------------------ */

.kit { list-style: none; margin: 0 0 1.5rem; padding: 0; font-family: var(--sans); font-size: var(--t-0); }
.kit li { padding: .45rem 0 .45rem 1.6rem; position: relative; border-bottom: 1px solid var(--line); }
.kit li:last-child { border-bottom: 0; }
.kit li::before {
  content: ""; position: absolute; left: 0; top: 1.05em;
  width: .7rem; height: 2px; background: var(--rose-dark);
}

/* --- Preise ------------------------------------------------------------ */

.rate {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--rose);
  padding: 1.75rem;
  display: flex; flex-direction: column;
}
.rate--lead { border-top-color: var(--rose); background: var(--ink); color: var(--paper); }
.rate h2 { font-size: var(--t-1); margin: 0 0 .6em; }
.rate--lead h2, .rate--lead h3 { color: var(--white); }
.rate--lead .rate__note { color: rgba(255,255,255,.7); }
.rate--lead .btn { background: var(--rose); border-color: var(--rose); color: var(--ink); }
.rate--lead .btn:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

.rate__price {
  font-family: var(--sans); font-size: clamp(1.7rem, 5.5vw, var(--t-3)); font-weight: 600;
  letter-spacing: -0.03em; line-height: 1; margin: .5rem 0 .25rem;
}
.rate__price span { font-size: var(--t-0); font-weight: 400; letter-spacing: 0; margin-left: .3em; }
.rate__note { font-family: var(--sans); font-size: var(--t--1); color: var(--slate); margin: 0 0 1.25rem; }
.rate .kit { flex: 1; }
.rate .kit li { border-bottom-color: rgba(32,28,32,.1); }
.rate--lead .kit li { border-bottom-color: rgba(255,255,255,.16); }
.rate--lead .kit li::before { background: var(--rose); }

/* --- Bildergalerie ----------------------------------------------------- */

.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 48rem) { .gallery { gap: 1.25rem; grid-template-columns: repeat(3, 1fr); } }
.gallery img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; background: var(--stone); }
.gallery a { display: block; overflow: hidden; }
.gallery a img { transition: transform .4s ease; }
.gallery a:hover img { transform: scale(1.03); }
/* Erstes Bild ueber die volle Breite: die Raeume sind das Produkt. */
@media (min-width: 48rem) {
  .gallery--feature { grid-template-columns: repeat(3, 1fr); }
  /* Erstes Element ueber die volle Breite, egal ob Bild oder Link. */
  .gallery--feature > :first-child { grid-column: 1 / -1; }
  .gallery--feature > :first-child img { aspect-ratio: 21 / 9; }
}

.figure-set { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.figure-set img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; background: var(--stone); }

/* --- Bewertung --------------------------------------------------------- */

.rating { font-family: var(--sans); }
.rating__score { font-size: clamp(2.75rem, 9vw, var(--t-5)); font-weight: 600; letter-spacing: -0.04em; line-height: 1; margin: 0; }
.rating__stars { font-size: var(--t-2); color: var(--star); letter-spacing: .1em; margin: .35rem 0 0; }
.rating__meta { font-size: var(--t--1); color: var(--slate); margin: .5rem 0 0; }
.rating__text { font-family: var(--serif); font-size: var(--t-0); margin: 1.25rem 0 0; max-width: 34ch; }
.rating__links { font-family: var(--sans); font-size: var(--t--1); margin: 1.25rem 0 0; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.rating__links a { font-weight: 600; display: inline-flex; align-items: center; min-height: 44px; }

/* --- Formular ---------------------------------------------------------- */

.form { display: grid; gap: 1.15rem; }
@media (min-width: 40rem) { .form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; } }

.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-family: var(--sans); font-size: var(--t--1); font-weight: 600; }
.field .hint { font-family: var(--sans); font-size: 0.8125rem; color: var(--slate); font-weight: 400; }

.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: var(--t-0);
  padding: .75rem .85rem;
  border: 1px solid var(--line); border-radius: 0;
  background: var(--white); color: var(--ink);
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--rose-dark); outline: 2px solid var(--rose-dark); outline-offset: 0;
}
.field textarea { min-height: 8rem; resize: vertical; }

.field--check { flex-direction: row; align-items: flex-start; gap: .75rem; padding-block: .35rem; }
.field--check input { width: 1.5rem; height: 1.5rem; margin-top: .15rem; flex: none; accent-color: var(--rose-dark); }
.field--check label { font-weight: 400; font-size: var(--t--1); line-height: 1.5; }

.hp { position: absolute; left: -9999px; }

.form__note { font-family: var(--sans); font-size: 0.8125rem; color: var(--slate); }

.notice { padding: 1rem 1.25rem; border-left: 4px solid var(--rose); background: var(--stone); font-family: var(--sans); font-size: var(--t--1); }
.notice--ok { border-left-color: #3f7d3f; }
.notice--err { border-left-color: #a63a2b; }

/* --- Kontaktblock ------------------------------------------------------ */

.contact-card { font-family: var(--sans); }
.contact-card dl { margin: 0; }
.contact-card dt { font-size: 0.8125rem; color: var(--slate); font-weight: 500; margin-top: 1.25rem; }
.contact-card dd { margin: .15rem 0 0; font-size: var(--t-1); font-weight: 600; letter-spacing: -0.01em; }
.contact-card dd a { text-decoration: none; }
.contact-card dd a:hover { text-decoration: underline; }

.map { border: 1px solid var(--line); width: 100%; aspect-ratio: 4 / 3; }

/* --- Fußzeile ---------------------------------------------------------- */

.footer { background: var(--ink); color: var(--paper); padding-block: 3.5rem 2rem; font-family: var(--sans); font-size: var(--t--1); }
.footer a { color: var(--paper); text-decoration: none; }
.footer a:hover { color: var(--rose); text-decoration: underline; }
.footer__logo img { height: 52px; width: auto; margin-bottom: 1.25rem; }
.footer h2 { font-size: var(--t-0); margin-bottom: .8rem; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { padding: 0; }
.footer li a { display: inline-block; padding: .7rem 0; }
.footer li:not(:has(a)) { padding: .35rem 0; }
.footer__legal {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: space-between;
  color: rgba(255,255,255,.65); font-size: 0.8125rem;
}
.footer__legal a { color: rgba(255,255,255,.85); display: inline-block; padding: .75rem 0; }

/* --- Rechtstexte ------------------------------------------------------- */

.prose { max-width: var(--narrow); }
.prose h2 { font-size: var(--t-2); margin-top: 2.5rem; }
.prose h3 { margin-top: 1.75rem; }
