@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --green:   #2D5A3D;
  --green-light: #EAF2EC;
  --amber:   #C8933A;
  --amber-light: #FBF3E4;
  --bg:      #FAF8F4;
  --white:   #FFFFFF;
  --ink:     #1C1C1A;
  --muted:   #6B6B5F;
  --border:  #E2DDD5;
  --radius:  12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--ink);
}

.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links a:hover { color: var(--ink); }

/* ── HERO ── */
.hero {
  padding: 80px 40px 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--green);
}

.hero-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  gap: 28px;
}

.stat { }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-map {
  background: var(--green-light);
  border-radius: var(--radius);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.hero-map-inner {
  text-align: center;
  color: var(--green);
}

.map-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  opacity: 0.5;
}

.hero-map-pins {
  position: absolute;
  inset: 0;
}

.pin {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.pin-label {
  position: absolute;
  font-size: 10px;
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
  margin-top: 12px;
  margin-left: -16px;
}

/* ── SECTION ── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
}

.section-sub {
  font-size: 13px;
  color: var(--muted);
}

/* ── PROPERTY CARDS ── */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.prop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.prop-photo {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.prop-photo.wr { background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 100%); }
.prop-photo.ew { background: linear-gradient(135deg, #BBDEFB 0%, #90CAF9 100%); }
.prop-photo.lv { background: linear-gradient(135deg, #FFE0B2 0%, #FFCC80 100%); }

.prop-photo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}

.prop-body { padding: 20px; }

.prop-location {
  font-size: 11px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.prop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}

.prop-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.prop-amenities {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.amenity-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--border);
}

.prop-avail {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.avail-day {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--green-light);
}

.avail-day.taken { background: #FECACA; }
.avail-day.today { background: var(--amber); }

.prop-cta {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.prop-cta:hover { background: #1e3f2b; }

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--green);
  color: var(--white);
  padding: 60px 40px;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--white);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.how-step { }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.step-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--white);
}

.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.footer-logo span { color: var(--green); }

/* ── PROPERTY PAGE ── */
.prop-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.prop-hero-photo {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}

.prop-hero-photo.wr { background: linear-gradient(135deg, #C8E6C9 0%, #81C784 100%); }
.prop-hero-photo.ew { background: linear-gradient(135deg, #BBDEFB 0%, #64B5F6 100%); }
.prop-hero-photo.lv { background: linear-gradient(135deg, #FFE0B2 0%, #FFB74D 100%); }

.prop-hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}

.prop-hero-location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.prop-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 12px;
}

.prop-hero-desc {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

.prop-hero-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.prop-hero-tag {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* ── BOOKING PANEL ── */
.booking-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 280px;
  position: sticky;
  top: 80px;
}

.booking-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.booking-note {
  font-size: 12px;
  color: var(--muted);
  background: var(--amber-light);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.form-group { margin-bottom: 12px; }

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 5px;
}

.form-input {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
}

.form-input:focus { border-color: var(--green); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.form-textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.15s;
}

.form-textarea:focus { border-color: var(--green); }

.btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.btn-submit:hover { background: #1e3f2b; }

.pay-divider {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0;
  position: relative;
}

.pay-divider::before, .pay-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}

.pay-divider::before { left: 0; }
.pay-divider::after  { right: 0; }

.btn-venmo, .btn-paypal {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 8px;
  transition: opacity 0.2s;
}

.btn-venmo  { background: #3D95CE; color: #fff; }
.btn-paypal { background: #0070BA; color: #fff; }

.btn-venmo:hover, .btn-paypal:hover { opacity: 0.88; }

.pay-note {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ── GALLERY PLACEHOLDER ── */
.gallery-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item {
  background: var(--green-light);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--muted);
  flex-direction: column;
  gap: 6px;
}

.gallery-item.main { grid-row: span 2; }
.gallery-icon { font-size: 24px; opacity: 0.4; }

/* ── AMENITIES ── */
.details-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.details-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}

.amenity-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ── AVAILABILITY CALENDAR ── */
.calendar-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.calendar-placeholder {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.cal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cal-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  max-width: 420px;
  margin: 0 auto;
}

.cal-hdr {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
  padding: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cal-cell {
  font-size: 13px;
  text-align: center;
  padding: 8px 4px;
  border-radius: 6px;
  cursor: pointer;
}

.cal-cell.open  { background: var(--green-light); color: #1e3f2b; }
.cal-cell.taken { background: #FEE2E2; color: #991B1B; cursor: default; }
.cal-cell.today { background: var(--amber); color: var(--white); font-weight: 500; }
.cal-cell.empty { }

.cal-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}

.leg-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: middle;
}

/* ── BACK LINK ── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  padding: 12px 40px;
  transition: color 0.15s;
}

.back-link:hover { color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; font-size: 12px; }
  .hero { grid-template-columns: 1fr; padding: 48px 20px; }
  .hero-map { display: none; }
  .hero h1 { font-size: 36px; }
  .section { padding: 40px 20px; }
  .prop-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .prop-hero-content { grid-template-columns: 1fr; padding: 24px 20px; }
  .booking-panel { position: static; min-width: unset; }
  .details-section { grid-template-columns: 1fr; padding: 32px 20px; }
  .gallery-section { padding: 32px 20px 0; }
  .calendar-section { padding: 0 20px 40px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}

.btn-zelle {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 8px;
  background: #6D1ED4;
  color: #fff;
  transition: opacity 0.2s;
}

.btn-zelle:hover { opacity: 0.88; }
