:root {
  --glodge-dark: #8b7b5a;
  --glodge-light: #fcecd9;	  
  --forest: #253d32;
  --forest-2: #314f41;
  --sage: #7f9277;
  --moss: #586f54;
  --sand: #f4efe5;
  --cream: #fffaf1;
  --clay: #b77955;
  --stone: #d8d0c2;
  --ink: #253128;
  --muted: #6d746b;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(37, 61, 50, .16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
	radial-gradient(circle at 15% 5%, rgba(183,121,85,.16), transparent 28rem),
	linear-gradient(180deg, var(--cream), var(--sand));
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  inset: 18px 0 auto 0;
  z-index: 20;
  pointer-events: none;
}

.nav {
  pointer-events: auto;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: rgba(255, 250, 241, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(37,61,50,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--forest);
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 5%;
  background: var(--forest);
  position: relative;
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--forest);
  font-size: .95rem;
}

.nav-links a { opacity: .84; }
.nav-links a:hover { opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--glodge-dark);
  color: var(--glodge-light);
  box-shadow: 0 14px 32px rgba(37,61,50,.22);
}
.btn-primary:hover {
  color: var(--glodge-dark);
  background: var(--glodge-light);
  border: solid 1px var(--stone);
}

.btn-secondary {
  color: var(--glodge-dark);
  border-color: rgba(37,61,50,.18);
  background: var(--glodge-light);
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 118px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
	linear-gradient(90deg, rgba(37,61,50,.84) 0%, rgba(37,61,50,.56) 25%, rgba(37,61,50,.15) 100%),
	url("/img/chalet-gurnigelbad.jpg") center/cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, var(--cream));
  z-index: -1;
}

.hero-content {
  max-width: 760px;
  color: var(--cream);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  margin: 0;
  color: inherit;
}

h1 {
  margin-top: 26px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  letter-spacing: -.06em;
  max-width: 860px;
}

.lead {
  margin: 26px 0 0;
  max-width: 640px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255,250,241,.88);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.quick-facts {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 14px;
  max-width: 760px;
}

.fact {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(12px);
}

.fact strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--forest);
}

.fact span {
  display: block;
  margin-top: 4px;
  color: rgba(0,0,0,.78);
  font-size: .92rem;
}

section { padding: 90px 0; }
.section-kicker {
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .82rem;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  color: var(--forest);
  letter-spacing: -.045em;
  margin-bottom: 22px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}

.copy {
  font-size: 1.08rem;
  color: var(--muted);
}

.copy p { margin-top: 0; text-align: justify; }
.copy strong { color: var(--forest); }

.feature-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(37,61,50,.10);
  box-shadow: var(--shadow);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.feature-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: start;
}

.icon {
  width: 50px;
  height: 50px;
  padding: 5px;
  border-radius: 14px;
  background: var(--glodge-dark);
  color: var(--glodge-light);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}

.icon svg path{
  fill: var(--glodge-light);
}

.feature-list b {
  display: block;
  color: var(--forest);
  margin-bottom: 2px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 235px;
  gap: 18px;
}

.tile {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37,61,50,.96), rgba(127,146,119,.1)),
	url("/img/chalet-gurnigelbad.jpg") center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  min-height: 220px;
}

.tile:nth-child(1) { grid-row: span 2; }
.tile:nth-child(2) { background-image: linear-gradient(135deg, rgba(37,61,50,.74), rgba(183,121,85,.35)), url("/img/chalet-gurnigelbad-1.jpg"); }
.tile:nth-child(3) { background-image: linear-gradient(135deg, rgba(37,61,50,.72), rgba(127,146,119,.32)), url("/img/chalet-gurnigelbad-4.jpg"); }
.tile:nth-child(4) { background-image: linear-gradient(135deg, rgba(37,61,50,.70), rgba(183,121,85,.32)), url("/img/chalet-gurnigelbad-3.jpg"); }
.tile:nth-child(5) { background-image: linear-gradient(135deg, rgba(37,61,50,.72), rgba(127,146,119,.42)), url("/img/Naturpark_Gantrisch_Logo.png"); }

.tile span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: var(--cream);
  font-weight: 800;
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}

.booking-wrap {
  background: linear-gradient(180deg, var(--forest), #17271f);
  color: var(--cream);
  border-radius: 38px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 34px 90px rgba(37,61,50,.25);
  overflow: hidden;
  position: relative;
}

.booking-wrap::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -160px;
  top: -170px;
  background: rgba(183,121,85,.22);
  filter: blur(4px);
}

.booking-head {
  position: relative;
  max-width: 760px;
  margin-bottom: 30px;
}

.booking-head .section-title { color: var(--cream); }
.booking-head p { color: rgba(255,250,241,.76); font-size: 1.05rem; }

.ibe-card {
  position: relative;
  max-width: 1200px;
  min-width: 0;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 30px;
  background: rgba(255,250,241,.97);
  border: 1px solid rgba(255,255,255,.30);
  box-shadow: 0 22px 58px rgba(0,0,0,.18);
  color: var(--ink);
}

ibe-up,
ibe-up * {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

ibe-up button,
ibe-up .btn,
ibe-up input,
ibe-up select {
  border-radius: 14px;
}

ibe-up {
  --ibe-primary-color: var(--forest);
  --ibe-secondary-color: var(--clay);
  display: block;
  width: 100%;
  min-height: 360px;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(37,61,50,.10);
}

.detail-card h3 {
  color: var(--forest);
  font-size: 1.55rem;
  margin-bottom: 12px;
}

.detail-card p {
  color: var(--muted);
  margin: 0;
  text-align: justify;
}

.location {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: stretch;
}

.address-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.address-card .section-title { color: var(--cream); }

.address-card p { color: rgba(255,250,241,.78); }

.map {
  border: 1px solid rgba(37,61,50,.12);
  background: var(--stone);
}

.map-responsive {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 70%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-note {
  border-radius: 18px;
  background: rgba(255,250,241,.9);
  padding: 14px 16px;
  color: var(--forest);
  font-weight: 700;
  max-width: 420px;
}

footer {
  padding: 42px 0;
  background: var(--glodge-dark);
  color: var(--glodge-light);
  border-top: 1px solid rgba(37,61,50,.10);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.ibe-booking-management-span, .ibe-password-reset-title, .ibe-col-md-6.ibe-create-guest-account-info h1{
	font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
	font-size: clamp(1.2rem, 5vw, 2.4rem);
	letter-spacing: 0rem;
	text-transform: none !important;
	line-height: 1.05;
}

@media (max-width: 980px) {
  .nav-links a:not(.btn) { display: none; }
  .intro-grid,
  .location {
	grid-template-columns: 1fr;
  }
  .quick-facts,
  .details {
	grid-template-columns: repeat(2, 1fr);
  }
  .gallery {
	grid-template-columns: 1fr 1fr;
  }
  .tile:nth-child(1) {
	grid-column: span 2;
	grid-row: auto;
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .topbar { inset-top: 10px; }
  .nav {
	border-radius: 24px;
	align-items: stretch;
  }
  .brand span { max-width: 160px; white-space: normal; line-height: 1.15; }
  .nav .btn { padding-inline: 15px; min-height: 42px; }
  .hero { min-height: auto; padding: 112px 0 62px; }
  h1 { font-size: clamp(2.7rem, 16vw, 4.8rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .quick-facts,
  .details,
  .gallery {
	grid-template-columns: 1fr;
  }
  .tile:nth-child(1) { grid-column: auto; }
  section { padding: 64px 0; }
  .booking-wrap { border-radius: 26px; padding: 22px; }
  .ibe-card { padding: 12px; border-radius: 22px; }
  ibe-up { min-height: 420px; }
  .footer-inner { align-items: flex-start; }
}