/* ============================================================
   Pension Mühlenhof · Familie Bohnert
   v2 — Editorial × Apothecary
   ------------------------------------------------------------
   Architecture: modern boutique hotel
   Texture: artisan distillery / craft catalog
   Typography: Cormorant Garamond (single family, varied weights)
============================================================ */

:root {
  /* Paper tones — warm cream that reads as printed page */
  --paper:      #f4ede0;   /* base cream */
  --paper-2:    #ebe2d0;   /* deeper paper, for card surfaces */
  --paper-3:    #ddd0b6;   /* darkest paper, for rules */

  /* Forest darks */
  --ink:        #1a2820;   /* near-black forest */
  --ink-2:      #2c3a32;   /* softer body color */
  --ink-3:      #4a5750;   /* muted */
  --rule:       #c4b89c;   /* paper rule */

  /* Cognac / copper — primary warm accent */
  --copper:     #a76a3c;
  --copper-2:   #8a5430;
  --copper-tint:#e8d3bd;

  /* Plum — used very sparingly */
  --plum:       #6e2638;
  --plum-tint:  #d9b8be;

  /* Gold — wax seals only */
  --gold:       #b48a3a;

  /* Type — single family with optical hierarchy */
  --ff-serif: "Cormorant Garamond", "Cormorant", "Garamond", "Georgia", serif;
  --ff-utility: "Inter", "Helvetica Neue", "Arial", sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 2px;
  --radius-lg: 4px;

  --shadow-sm: 0 1px 3px rgba(26, 40, 32, 0.06);
  --shadow-md: 0 18px 40px -16px rgba(26, 40, 32, 0.18);
  --shadow-lg: 0 30px 70px -20px rgba(26, 40, 32, 0.32);
}

/* ============================================================
   RESET + BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Subtle paper grain — printed page feel */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(167, 106, 60, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(110, 38, 56, 0.03) 0%, transparent 50%);
}

/* Paper grain noise as SVG, very subtle */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1rem; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--ff-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.012em;
}

/* ============================================================
   CONTAINER + UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* Eyebrow — small uppercase utility label */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-utility);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 1.5rem;
}
.eyebrow--light { color: var(--copper-tint); }

/* Display heading */
.h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.022em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
}
.h2--light { color: var(--paper); }
.h2--light em { color: var(--copper-tint); }

/* Lede paragraph — generous, serif, comfortable */
.lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 400;
}
.lede--center { margin-left: auto; margin-right: auto; text-align: center; }
.lede--light { color: rgba(244, 237, 224, 0.85); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-utility);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
  border: 1px solid transparent;
}
.btn--solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn--solid:hover {
  background: var(--copper);
  border-color: var(--copper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244, 237, 224, 0.45);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  border-color: var(--paper);
  background: rgba(244, 237, 224, 0.08);
  transform: translateY(-1px);
}
.btn--full { width: 100%; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 237, 224, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: padding .25s ease;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.brand__mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  flex-shrink: 0;
}
.brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand__sub {
  font-family: var(--ff-utility);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 0.3rem;
}

.nav { display: flex; align-items: center; }
.nav__list {
  display: flex;
  gap: 2.25rem;
  font-family: var(--ff-utility);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__list a {
  color: var(--ink-2);
  position: relative;
  padding: 0.35rem 0;
  transition: color .2s ease;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: -2px;
  height: 1px;
  background: var(--copper);
  transition: left .25s ease, right .25s ease;
}
.nav__list a:hover { color: var(--copper); }
.nav__list a:hover::after { left: 0; right: 0; }

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.4rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-utility);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s ease;
}
.header-cta:hover { background: var(--copper); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 0 var(--gutter);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height .35s cubic-bezier(.4, 0, .2, 1),
    opacity .25s ease,
    transform .35s cubic-bezier(.4, 0, .2, 1),
    padding .35s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 12px 24px -8px rgba(26, 40, 32, 0.12);
  pointer-events: none;
}
.mobile-nav.is-open {
  max-height: 1000px; /* Gives the menu plenty of room to expand */
  overflow-y: auto;   /* Lets the user scroll inside the menu on tiny screens */
  opacity: 1;
  transform: translateY(0);
  padding: 1rem var(--gutter) 3rem; /* Added extra breathing room at the bottom */
  pointer-events: auto;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
}
.mobile-nav li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .3s ease, transform .3s ease;
}
.mobile-nav.is-open li { opacity: 1; transform: translateX(0); }
.mobile-nav.is-open li:nth-child(1) { transition-delay: .08s; }
.mobile-nav.is-open li:nth-child(2) { transition-delay: .13s; }
.mobile-nav.is-open li:nth-child(3) { transition-delay: .18s; }
.mobile-nav.is-open li:nth-child(4) { transition-delay: .23s; }
.mobile-nav.is-open li:nth-child(5) { transition-delay: .28s; }
.mobile-nav.is-open li:nth-child(6) { transition-delay: .33s; }
.mobile-nav a {
  display: flex;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  min-height: 48px;
}
.mobile-nav li:last-child a { border-bottom: 0; }
.mobile-nav__contact {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--ff-utility);
  font-size: 0.85rem;
}
.mobile-nav__contact a {
  color: var(--copper);
  letter-spacing: 0.04em;
}
body.nav-open { overflow: hidden; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: min(820px, 95svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__image {
  position: absolute;
  inset: 0;
  /* Real Mühlenhof header image from their own site */
  background: url('https://pension-muehlenhof.de/wp-content/uploads/2017/02/header.jpg') center/cover no-repeat;
  background-position: center 50%;
  /* Filmic warmth — slight sepia/cream wash */
  filter: saturate(0.85) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 40, 32, 0.25) 0%, rgba(26, 40, 32, 0.45) 50%, rgba(26, 40, 32, 0.7) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(26, 40, 32, 0.35) 100%);
}

.hero__inner {
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  max-width: 800px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 2rem;
  font-family: var(--ff-utility);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper-tint);
}
.ornament { display: inline-flex; }

.hero__title {
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--paper);
  margin: 0 0 1.75rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--copper-tint);
}

.hero__lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 56ch;
  color: rgba(244, 237, 224, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(244, 237, 224, 0.65);
  z-index: 2;
  font-family: var(--ff-utility);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--copper-tint), transparent);
  background-size: 100% 200%;
  background-position: 0 0;
  animation: scroll-line 2.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { background-position: 0 -100%; }
  100% { background-position: 0 100%; }
}

/* ============================================================
   STICKY BOOKING BAR
============================================================ */
.booking-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(100%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  pointer-events: none;
  box-shadow: 0 -10px 30px -10px rgba(0, 0, 0, 0.25);
}
.booking-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.booking-bar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.booking-bar__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--copper-tint);
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.booking-bar__mark { color: var(--copper-tint); }
.booking-bar__fields {
  display: flex;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}
.booking-bar__fields label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}
.booking-bar__fields label > span {
  font-family: var(--ff-utility);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.55);
}
.booking-bar__fields input,
.booking-bar__fields select {
  font: inherit;
  font-family: var(--ff-utility);
  font-size: 0.9rem;
  padding: 0.55rem 0.7rem;
  background: rgba(244, 237, 224, 0.08);
  border: 1px solid rgba(244, 237, 224, 0.18);
  color: var(--paper);
  border-radius: var(--radius);
  min-height: 38px;
}
.booking-bar__fields input:focus,
.booking-bar__fields select:focus {
  outline: none;
  border-color: var(--copper);
}
.btn--bb {
  flex-shrink: 0;
  background: var(--copper);
  border-color: var(--copper);
}
.btn--bb:hover { background: var(--copper-2); border-color: var(--copper-2); }

@media (max-width: 880px) {
  .booking-bar { display: none; }
}

/* ============================================================
   QUOTE BAND
============================================================ */
.quote-band {
  padding: clamp(4rem, 9vw, 7rem) 0 0;
  text-align: center;
  position: relative;
}
.quote-band__text {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 1rem;
  position: relative;
}
.quote-band__text em {
  font-style: italic;
  color: var(--copper);
}
.quote-mark {
  font-family: var(--ff-serif);
  font-size: 2.5em;
  line-height: 0;
  color: var(--copper-tint);
  font-style: italic;
  vertical-align: -0.2em;
  margin-right: 0.1em;
}
.quote-mark--end { margin-right: 0; margin-left: 0.05em; }
.quote-band__attr {
  font-family: var(--ff-utility);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}

/* Section divider — line + centered botanical mark */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 320px;
  margin: clamp(3rem, 6vw, 5rem) auto 0;
  color: var(--copper);
}
.divider__line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.divider__mark {
  display: inline-flex;
  color: var(--copper);
}

/* ============================================================
   SECTION BASE
============================================================ */
.section { padding: clamp(5rem, 10vw, 8rem) 0; position: relative; }
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.section__head--light { color: var(--paper); }
.section__head--light .h2 { color: var(--paper); }

.section__note {
  text-align: center;
  margin-top: 2.5rem;
  font-family: var(--ff-utility);
  font-size: 0.85rem;
  color: var(--ink-3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================================
   WOHNEN — three rooms
============================================================ */
.section--wohnen { background: var(--paper); }

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1000px) { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px)  { .rooms { grid-template-columns: 1fr; gap: 2.5rem; } }

.room {
  display: flex;
  flex-direction: column;
}
.room__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--paper-2);
}
.room__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
  /* Filmic warmth on photos */
  filter: saturate(0.92) contrast(1.02);
}
.room:hover .room__media img { transform: scale(1.04); }

.room__no {
  display: block;
  font-family: var(--ff-utility);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.room__body h3 {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.room__meta {
  font-family: var(--ff-utility);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1rem;
}
.room__copy {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 1.5rem;
  flex: 1;
}
.room__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.price__from {
  font-family: var(--ff-utility);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.price__num {
  font-family: var(--ff-serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price__unit {
  font-family: var(--ff-utility);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ink-3);
  width: 100%;
}

.link-arrow {
  font-family: var(--ff-utility);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  transition: color .2s ease, gap .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.link-arrow:hover {
  color: var(--copper-2);
  gap: 0.7rem;
}

/* ============================================================
   BRENNEREI — dark forest, bottle silhouettes
============================================================ */
.section--brennerei {
  background: var(--ink);
  color: rgba(244, 237, 224, 0.9);
  position: relative;
  overflow: hidden;
}
.brennerei__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(167, 106, 60, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(110, 38, 56, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.brennerei__inner { position: relative; z-index: 1; }

.bottles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 880px) { .bottles { grid-template-columns: 1fr; gap: 3rem; max-width: 360px; } }

.bottle {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.bottle::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 50%;
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, var(--copper-tint), transparent);
  transition: height .8s cubic-bezier(.2, .8, .2, 1);
}
.bottle.is-visible::before { height: 100px; }

.bottle__shape {
  display: inline-flex;
  color: var(--copper-tint);
  margin-bottom: 1.5rem;
  transition: transform .3s ease;
}
.bottle:hover .bottle__shape { transform: translateY(-4px); }

.bottle h3 {
  font-family: var(--ff-serif);
  font-size: 1.85rem;
  font-weight: 500;
  font-style: italic;
  color: var(--paper);
  margin: 0 0 0.4rem;
}
.bottle__count {
  font-family: var(--ff-utility);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-tint);
  margin: 0 0 1.25rem;
}
.bottle__copy {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.7);
  margin: 0;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.brennerei__note {
  text-align: center;
  margin-top: 4rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--copper-tint);
}

/* ============================================================
   AUSZEICHNUNGEN — wax seals
============================================================ */
.section--seals {
  background: var(--paper-2);
  position: relative;
}

.seals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 860px) { .seals { grid-template-columns: 1fr; max-width: 420px; gap: 3rem; } }

.seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.seal__circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #d4a358 0%, var(--gold) 50%, #8a6628 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  text-align: center;
  margin-bottom: 1.75rem;
  position: relative;
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.2),
    inset 0 -3px 8px rgba(0, 0, 0, 0.15),
    0 8px 24px -8px rgba(180, 138, 58, 0.5);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.seal:hover .seal__circle {
  transform: rotate(-4deg) scale(1.04);
}
.seal__circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  pointer-events: none;
}
.seal__year {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--paper);
  position: relative;
  z-index: 1;
}
.seal__line {
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(244, 237, 224, 0.6);
  margin: 0.4rem 0;
}
.seal__small {
  font-family: var(--ff-utility);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.3;
  color: rgba(244, 237, 224, 0.85);
  position: relative;
  z-index: 1;
}

.seal__details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.seal__row {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: var(--ink-2);
}
.seal__row strong {
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  margin-right: 0.25rem;
  letter-spacing: -0.01em;
}
.seal__row--honor {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.85rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-utility);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}

.seals__note {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-3);
}

/* ============================================================
   REGION
============================================================ */
.section--region { background: var(--paper); }

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .region-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.rcard { display: flex; flex-direction: column; }
.rcard__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--paper-2);
}
.rcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
  filter: saturate(0.92) contrast(1.02);
}
.rcard:hover .rcard__media img { transform: scale(1.04); }
.rcard__body h3 {
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.rcard__body p { font-size: 1rem; line-height: 1.55; color: var(--ink-2); margin: 0; }

/* ============================================================
   FAMILIE
============================================================ */
.section--familie {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}
.familie {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .familie { grid-template-columns: 1fr; }
  .familie__media { max-width: 460px; margin: 0 auto; width: 100%; }
}

.signature {
  margin: 2rem 0 0;
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--ink);
}
.signature em {
  font-style: italic;
  color: var(--copper);
  font-weight: 500;
}
.signature span {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

.frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.frame figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 40, 32, 0.85) 100%);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.frame__caption-line {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.frame__caption-sub {
  font-family: var(--ff-utility);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper-tint);
}

/* ============================================================
   KONTAKT
============================================================ */
.section--kontakt { background: var(--paper); }

.kontakt {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .kontakt { grid-template-columns: 1fr; }
}

.kontakt__side {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.kontakt-block {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.5rem;
}
.kontakt-block:last-child { border-bottom: 0; }
.kontakt-block__label {
  display: block;
  font-family: var(--ff-utility);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.kontakt-block__value {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
  word-break: break-word;
}
.kontakt-block__value--email { font-size: 1.1rem; }
a.kontakt-block__value:hover { color: var(--copper); }

.kontakt__form {
  background: var(--paper-2);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border: 1px solid var(--rule);
}
.kontakt__form-title {
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  color: var(--ink);
  font-style: italic;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.field > span {
  font-family: var(--ff-utility);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-family: var(--ff-utility);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
  min-height: 44px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(167, 106, 60, 0.15);
}
.field textarea { resize: vertical; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }

.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.7rem;
}
.field--check input { margin-top: 0.3rem; flex-shrink: 0; width: 18px; height: 18px; }
.field--check span {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--ff-utility);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-3);
  line-height: 1.55;
}
.field--check strong { color: var(--ink); font-weight: 600; }

.form__note {
  margin-top: 0.75rem;
  font-family: var(--ff-utility);
  font-size: 0.85rem;
  color: var(--copper);
  min-height: 1.25em;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--ink);
  color: rgba(244, 237, 224, 0.7);
  padding: 5rem 0 0;
  position: relative;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 237, 224, 0.12);
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--copper-tint);
}
.footer__brand .brand__mark {
  width: 42px;
  height: 42px;
  color: var(--copper-tint);
}
.footer__wordmark {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.01em;
}
.footer__wordmark em {
  font-family: var(--ff-utility);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-tint);
  margin-top: 0.5rem;
  font-style: normal;
}
.footer__tagline {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(244, 237, 224, 0.7);
  max-width: 28ch;
  text-align: right;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 600px) { .footer__tagline { text-align: left; } }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
@media (max-width: 760px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .footer__cols { grid-template-columns: 1fr; gap: 2rem; } }

.footer__h {
  font-family: var(--ff-utility);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-tint);
  margin: 0 0 1.25rem;
}
.footer__cols ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-family: var(--ff-serif);
  font-size: 1.02rem;
}
.footer__cols a:hover { color: var(--copper-tint); }
.footer__copy-mini {
  font-family: var(--ff-utility);
  font-size: 0.75rem;
  color: rgba(244, 237, 224, 0.4);
  margin-top: 0.5rem;
  line-height: 1.5;
}

.footer__bar {
  border-top: 1px solid rgba(244, 237, 224, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--ff-utility);
  font-size: 0.78rem;
  color: rgba(244, 237, 224, 0.45);
}
@media (max-width: 600px) { .footer__bar { justify-content: center; text-align: center; } }
.footer__made a { color: var(--copper-tint); }
.footer__made a:hover { color: var(--paper); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: clamp(1rem, 3vw, 1.5rem);
  right: clamp(1rem, 3vw, 1.5rem);
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 12px rgba(37, 211, 102, 0.4),
    0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform .25s ease, box-shadow .25s ease, bottom .35s ease;
  overflow: hidden;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1fbe5a;
}
.whatsapp-fab:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: 3px;
}
.whatsapp-fab svg { position: relative; z-index: 2; }
.whatsapp-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 1;
  animation: wa-pulse 2.6s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  80%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
/* Lift the WhatsApp FAB above the booking bar */
.booking-bar.is-visible ~ .whatsapp-fab,
body:has(.booking-bar.is-visible) .whatsapp-fab {
  bottom: calc(clamp(1rem, 3vw, 1.5rem) + 80px);
}
@media (max-width: 880px) {
  .booking-bar.is-visible ~ .whatsapp-fab,
  body:has(.booking-bar.is-visible) .whatsapp-fab {
    bottom: clamp(1rem, 3vw, 1.5rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab__pulse { animation: none; opacity: 0; }
  .whatsapp-fab { transition: none; }
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__scroll-line { animation: none; }
  html { scroll-behavior: auto; }
  .seal:hover .seal__circle { transform: none; }
}

::selection { background: var(--copper); color: var(--paper); }

/* ============================================================
   MOBILE POLISH
============================================================ */
@media (max-width: 720px) {
  body { font-size: 17px; }

  .hero__title { font-size: clamp(2.4rem, 11vw, 3.6rem); line-height: 1; }
  .hero__lede { font-size: 1.05rem; }
  .hero__scroll { display: none; }

  .room__body h3 { font-size: 1.7rem; }
  .price__num { font-size: 1.6rem; }

  .bottle h3 { font-size: 1.65rem; }

  .seal__circle { width: 140px; height: 140px; }
  .seal__year { font-size: 2.1rem; }

  .quote-band__text { font-size: 1.4rem; }
}

@media (max-width: 420px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .room__foot { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}
