:root {
  --green: #5A744A;
  --green-dark: #405638;
  --beige: #F2EDE3;
  --beige-2: #E7DEC9;
  --gold: #C8A96A;
  --white: #FFFFFF;
  --ink: #333333;
  --muted: #6F6A60;
  --line: rgba(64, 86, 56, .14);
  --shadow: 0 18px 48px rgba(47, 58, 40, .16);
  --soft: 0 10px 26px rgba(47, 58, 40, .10);
  --radius: 18px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fbf8f1;
  line-height: 1.58;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 56px)); margin: 0 auto; }

.site-header {
  position: absolute;
  inset: 18px 0 auto;
  z-index: 50;
  padding: 0 22px;
}
.header-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 24px;
  background: rgba(255,255,255,.96);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 10px 36px rgba(45,55,38,.10);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 210px; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand strong { display: block; font-family: var(--serif); color: var(--green-dark); font-size: 1.2rem; line-height: 1.05; }
.brand small { display: block; color: var(--gold); text-transform: uppercase; letter-spacing: .13em; font-size: .62rem; font-weight: 900; margin-top: 3px; }
.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: clamp(13px, 1.45vw, 22px); }
.main-nav a { position: relative; padding: 8px 0; text-decoration: none; text-transform: uppercase; letter-spacing: .055em; font-size: .73rem; font-weight: 900; color: #3f423a; white-space: nowrap; }
.main-nav a.active::after, .main-nav a:hover::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--green); border-radius: 999px; }
.header-actions { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.phone { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; color: var(--green-dark); font-weight: 900; font-size: .88rem; white-space: nowrap; }
.phone svg { width: 17px; height: 17px; fill: var(--green); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--green-dark); border-radius: 99px; transition: .18s; }
.nav-toggle.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity: 0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .76rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: .18s ease;
}
.btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-small { min-height: 40px; padding: 11px 18px; }
.btn-block { width: 100%; }
.btn-light { background: var(--white); color: var(--green-dark); }

.hero {
  position: relative;
  min-height: 600px;
  padding-top: 118px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-photo, .hero-shade { position: absolute; inset: 0; }
.hero-photo {
  background: url('../img/Pension-mit-Schwimmbad-Vinschgau.jpg') center 44% / cover no-repeat;
  transform: scale(1.01);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(24,30,20,.70), rgba(24,30,20,.22) 54%, rgba(24,30,20,.10)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.18));
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 282px;
  gap: 54px;
  align-items: end;
  padding-bottom: 42px;
}
.hero-text { color: var(--white); max-width: 690px; padding-bottom: 12px; }
.overline { color: rgba(255,255,255,.86); text-transform: uppercase; letter-spacing: .17em; font-size: .72rem; font-weight: 900; margin-bottom: 13px; }
.overline.green { color: var(--green); }
h1, h2, h3 { font-family: var(--serif); color: var(--green-dark); font-weight: 600; line-height: 1.06; }
h1 { color: var(--white); font-size: clamp(2.7rem, 4.6vw, 4.25rem); letter-spacing: -.035em; margin-bottom: 18px; text-shadow: 0 8px 24px rgba(0,0,0,.28); }
h2 { font-size: clamp(2.15rem, 4vw, 3.55rem); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 1.45rem; }
.hero-text > p:not(.overline) { max-width: 620px; font-size: 1.13rem; color: rgba(255,255,255,.92); }
.hero-usps { margin-top: 33px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; max-width: 760px; border-top: 1px solid rgba(255,255,255,.46); border-bottom: 1px solid rgba(255,255,255,.26); }
.hero-usps span { display: grid; grid-template-columns: 34px 1fr; column-gap: 10px; padding: 18px 18px 18px 0; border-right: 1px solid rgba(255,255,255,.32); }
.hero-usps span:last-child { border-right: 0; padding-left: 18px; }
.hero-usps span:nth-child(2) { padding-left: 18px; }
.hero-usps b { font-size: .93rem; line-height: 1.18; }
.hero-usps small { grid-column: 2; color: rgba(255,255,255,.75); font-size: .82rem; margin-top: 2px; }

.booking-card { align-self: end; margin-bottom: 2px; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.booking-head { background: var(--green-dark); color: var(--white); padding: 18px 20px 17px; }
.booking-head strong { display: block; text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; }
.booking-head small { display: block; color: rgba(255,255,255,.76); font-size: .78rem; margin-top: 2px; }
.booking-body { padding: 18px; }
.booking-body label, .request-form label { display: grid; gap: 6px; margin-bottom: 12px; color: var(--green-dark); text-transform: uppercase; letter-spacing: .06em; font-weight: 900; font-size: .70rem; }
input, select, textarea { width: 100%; border: 1px solid rgba(64,86,56,.22); border-radius: 7px; background: #fff; color: var(--ink); padding: 11px 12px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(90,116,74,.13); }
.booking-body ul { list-style: none; margin: 14px 0 9px; color: var(--muted); font-size: .82rem; }
.booking-body li { position: relative; padding-left: 20px; margin: 6px 0; }
.booking-body li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.booking-body em { display: block; color: #9b9487; font-style: normal; font-size: .72rem; text-align: center; }

.benefit-bar { background: var(--beige); border-bottom: 1px solid rgba(64,86,56,.08); }
.benefits { min-height: 84px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.benefits article { display: flex; align-items: center; gap: 13px; padding: 18px 20px; border-right: 1px solid rgba(64,86,56,.12); }
.benefits article:first-child { padding-left: 0; }
.benefits article:last-child { border-right: 0; padding-right: 0; }
.benefits b { display: block; color: var(--green-dark); line-height: 1.16; font-size: .96rem; }
.benefits small { display: block; color: var(--muted); font-size: .80rem; line-height: 1.25; margin-top: 2px; }

.ico { width: 34px; height: 34px; border: 1.8px solid currentColor; color: var(--green); border-radius: 50%; display: inline-block; position: relative; flex: 0 0 auto; }
.ico.sun::before { content:''; position:absolute; inset:9px; border:2px solid currentColor; border-radius:50%; }
.ico.cup::before { content:''; position:absolute; left:9px; top:11px; width:13px; height:10px; border:2px solid currentColor; border-top:0; border-radius:0 0 6px 6px; }
.ico.pool::before { content:'≈'; position:absolute; left:6px; top:2px; font-size:24px; font-weight:900; }
.ico.price::before { content:'€'; position:absolute; inset:0; display:grid; place-items:center; font-weight:900; }
.ico.wifi::before { content:'⌁'; position:absolute; inset:0; display:grid; place-items:center; font-size:25px; transform:rotate(90deg); }
.ico.bike::before { content:'⌁'; position:absolute; inset:0; display:grid; place-items:center; font-size:22px; }
.ico.heart::before { content:'♥'; position:absolute; inset:0; display:grid; place-items:center; font-size:17px; }
.hero-usps .ico { color: rgba(255,255,255,.86); border-color: rgba(255,255,255,.78); }

.section { padding: 84px 0; }
.opening { background: #fff; }
.opening-grid { display: grid; grid-template-columns: minmax(280px, 1fr) 470px 270px; gap: 28px; align-items: stretch; }
.opening-copy { padding: 6px 8px 0 0; }
.opening-copy p:not(.overline), .copy-panel p, .section-head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 18px; }
.activity-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-self: start; }
.activity-card { position: relative; height: 176px; border-radius: 15px; overflow: hidden; box-shadow: var(--soft); background: var(--green-dark); }
.activity-card img { width: 100%; height: 100%; object-fit: cover; transition: .35s; }
.activity-card::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.66)); }
.activity-card span { position: absolute; z-index: 2; left: 15px; bottom: 13px; color: white; font-family: var(--serif); font-size: 1.28rem; font-weight: 600; }
.activity-card:hover img { transform: scale(1.06); }
.contact-sidebar { background: var(--beige); border-radius: 17px; padding: 24px; color: var(--muted); box-shadow: var(--soft); }
.contact-sidebar h3 { margin-bottom: 12px; }
.contact-sidebar p { margin-bottom: 14px; }
.contact-sidebar a { display: block; color: var(--green-dark); font-weight: 900; text-decoration: none; margin: 8px 0; }
.route-btn { margin-top: 18px !important; padding: 12px 14px; border-radius: 8px; background: var(--green); color: #fff !important; text-align: center; text-transform: uppercase; letter-spacing: .06em; font-size: .74rem; }
.mini-map { margin-top: 16px; height: 92px; border-radius: 12px; background: linear-gradient(135deg,#e9e0ce,#fff7e9); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; padding: 16px; font-size: .74rem; color: #8a806f; }
.mini-map::before { content:''; position:absolute; left:18px; right:18px; top:50%; border-top:2px dashed rgba(90,116,74,.32); }
.mini-map b { position:absolute; left:54%; top:42%; width:18px; height:18px; background: var(--gold); border-radius:50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 3px 8px rgba(0,0,0,.18); }

.rooms, .prices { background: var(--beige); }
.section-head { max-width: 720px; margin-bottom: 32px; }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.room-card { background: white; border-radius: 17px; overflow: hidden; box-shadow: var(--soft); }
.room-card img { width: 100%; height: 230px; object-fit: cover; }
.room-card div { padding: 22px; }
.room-card span, .price-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: .70rem; font-weight: 900; }
.room-card p { color: var(--muted); margin: 10px 0 16px; }
.room-card a { color: var(--green); text-transform: uppercase; letter-spacing: .06em; font-weight: 900; font-size: .78rem; text-decoration: none; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.photo-panel { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); min-height: 390px; }
.photo-panel img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.copy-panel { max-width: 580px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.chips span { background: var(--beige); border-radius: 999px; padding: 9px 13px; color: var(--green-dark); font-weight: 900; font-size: .84rem; }

.pool-band { padding: 105px 0; background: linear-gradient(90deg, rgba(64,86,56,.86), rgba(64,86,56,.28)), url('../img/Pension-mit-Schwimmbad-Vinschgau.jpg') center/cover no-repeat; }
.pool-copy { max-width: 560px; background: rgba(64,86,56,.82); color: white; border-radius: 20px; padding: 42px; box-shadow: var(--shadow); }
.pool-copy h2 { color: white; }
.pool-copy p:not(.overline) { color: rgba(255,255,255,.86); margin-bottom: 22px; }

.price-grid, .request-grid { display: grid; grid-template-columns: 1fr 430px; gap: 54px; align-items: start; }
.price-card, .request-form { background: white; border-radius: 18px; padding: 30px; box-shadow: var(--soft); }
.price-card strong { display:block; color: var(--green); font-size: 4.2rem; line-height:1; letter-spacing:-.06em; margin: 8px 0; }
.price-card p { color: var(--muted); margin-bottom: 15px; }
.price-card ul { list-style:none; color: var(--muted); }
.price-card li { position:relative; padding-left:22px; margin:8px 0; }
.price-card li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:900; }

.gallery { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border:0; border-radius:15px; overflow:hidden; height:210px; cursor:zoom-in; box-shadow:var(--soft); background:var(--beige); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:.3s; }
.gallery-item:hover img { transform:scale(1.06); }

.request { background: #fff; }
.request a { color: var(--green-dark); font-weight: 900; text-decoration: none; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
textarea { resize: vertical; }

.footer { background: var(--green-dark); color: rgba(255,255,255,.76); padding: 42px 0 72px; }
.footer-grid { display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap:28px; }
.footer strong { color:#fff; font-family:var(--serif); font-size:1.4rem; }
.footer a { display:block; color:#fff; text-decoration:none; margin:5px 0; }

.mobile-sticky { display:none; position:fixed; z-index:90; left:12px; right:12px; bottom:12px; gap:8px; padding:8px; background:rgba(255,255,255,.95); border-radius:14px; box-shadow:var(--shadow); }
.mobile-sticky a { flex:1; min-height:46px; display:grid; place-items:center; background:var(--green); color:#fff; border-radius:9px; text-decoration:none; text-transform:uppercase; letter-spacing:.06em; font-size:.74rem; font-weight:900; }
.mobile-sticky a:nth-child(2){ background:var(--beige); color:var(--green-dark); }
.lightbox { position:fixed; inset:0; z-index:200; display:none; align-items:center; justify-content:center; padding:24px; background:rgba(18,22,15,.90); }
.lightbox.active { display:flex; }
.lightbox img { max-width:min(1100px, 94vw); max-height:86vh; border-radius:14px; box-shadow:var(--shadow); }
.lightbox button { position:absolute; top:20px; right:22px; width:48px; height:48px; border:0; border-radius:50%; background:#fff; color:var(--green-dark); font-size:2rem; cursor:pointer; }
.reveal { opacity:0; transform:translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1120px) {
  .header-shell { gap: 16px; padding-inline: 18px; }
  .brand { min-width: 185px; }
  .phone { display:none; }
  .main-nav { gap: 12px; }
  .main-nav a { font-size: .66rem; }
  .opening-grid { grid-template-columns: 1fr; }
  .activity-cards { grid-template-columns: repeat(3, 1fr); }
  .contact-sidebar { max-width: none; }
}
@media (max-width: 900px) {
  .container { width: min(100% - 36px, var(--container)); }
  .site-header { position:absolute; top:10px; padding:0 12px; }
  .header-shell { border-radius:0 0 20px 20px; min-height:70px; }
  .brand img { width:42px; height:42px; }
  .brand strong { font-size:1rem; }
  .brand small { font-size:.55rem; }
  .main-nav { display:none; position:absolute; top:82px; left:14px; right:14px; background:white; border-radius:16px; padding:10px; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .main-nav.open { display:flex; }
  .main-nav a { padding:12px; font-size:.78rem; }
  .nav-toggle { display:flex; }
  .header-actions .btn { display:none; }
  .hero { min-height:auto; padding-top:98px; }
  .hero-content { grid-template-columns:1fr; gap:24px; padding-bottom:28px; }
  .hero-text { padding-top:96px; }
  .hero-usps { grid-template-columns:1fr; border-bottom:0; }
  .hero-usps span, .hero-usps span:nth-child(2), .hero-usps span:last-child { padding:14px 0; border-right:0; border-bottom:1px solid rgba(255,255,255,.26); }
  .booking-card { max-width:420px; width:100%; }
  .benefits, .room-grid, .gallery-grid, .split, .price-grid, .request-grid, .footer-grid { grid-template-columns:1fr; }
  .benefits article { border-right:0; border-bottom:1px solid rgba(64,86,56,.12); padding-left:0; padding-right:0; }
  .activity-cards { grid-template-columns:1fr; }
  .activity-card { height:220px; }
  .section { padding:66px 0; }
  .mobile-sticky { display:flex; }
  body { padding-bottom:70px; }
}
@media (max-width: 560px) {
  h1 { font-size:2.55rem; }
  h2 { font-size:2.15rem; }
  .hero-text { padding-top:70px; }
  .booking-body { padding:16px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .photo-panel, .photo-panel img { min-height:300px; }
  .pool-copy { padding:28px; }
  .price-card strong { font-size:3.2rem; }
}
