:root {
  --primary: #6f7f63;
  --primary-dark: #56634d;
  --secondary: #5f7161;
  --accent: #d7dfcf;
  --light: #f8f4e3;
  --dark: #3a3b3c;
  --muted: #f7f7f7;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
section[id] { scroll-margin-top: 112px; }
body {
  margin: 0;
  font-family: "Raleway", Arial, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.18;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 0 16px;
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.2s ease;
}
.site-header.scrolled { background: #fff; }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 16px; color: #000; font: 700 1.4rem "Playfair Display", serif; }
.brand img { width: 78px; height: 64px; object-fit: cover; border-radius: 6px; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-weight: 700; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}
.desktop-nav a:hover::after { width: 100%; }
.menu-button { display: none; border: 0; background: transparent; color: var(--dark); font-size: 1.5rem; cursor: pointer; }
.mobile-nav { display: none; background: #fff; padding: 8px 24px 20px; }
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 8px 0; font-weight: 700; }

.site-header .desktop-nav a,
.site-header .mobile-nav a {
  color: var(--dark);
}

.site-header .desktop-nav a:hover,
.site-header .mobile-nav a:hover {
  color: var(--primary);
}

.hero {
  min-height: 85vh;
  display: grid;
  place-items: center;
  padding: 128px 0 64px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("http://www.gizobel.de/wp-content/uploads/2026/05/3f9c76d5-4e54-43a2-963e-e2686cefa788.png") center / cover;
}
.hero h1 { font-size: clamp(2.3rem, 6vw, 4.25rem); font-weight: 700; margin-bottom: 1.25rem; }
.hero p { max-width: 820px; margin: 0 auto 2rem; font-size: clamp(1.15rem, 2.2vw, 1.55rem); }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.5rem;
  border: 0;
  border-radius: 4px;
  font: 700 1rem "Raleway", sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.button:hover, button:hover { transform: translateY(-2px); }
.button-primary, .card-footer button, .detail-button { color: #fff; background: var(--primary); }
.button-primary:hover, .card-footer button:hover, .detail-button:hover { background: var(--primary-dark); }
.button-secondary { color: #fff; background: var(--secondary); }
.full { width: 100%; }
.detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
}

.section { padding: 72px 0; }
.section-white { background: #fff; }
.section-muted { background: var(--muted); }
.section-title {
  position: relative;
  display: inline-block;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 2.25rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--primary);
}
.centered { text-align: center; }
.centered::after { left: 0; transform: none; }
.lead { max-width: 1100px; margin: -0.25rem auto 3rem; text-align: center; font-size: 1.125rem; }
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: center; }
.split p { font-size: 1.05rem; margin: 0 0 1.25rem; }
.rounded-image { width: 100%; border-radius: 8px; box-shadow: 0 14px 30px rgba(0,0,0,0.16); object-fit: cover; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.apartments-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; }
.card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-7px); box-shadow: 0 10px 25px rgba(0,0,0,0.18); }
.card img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 { color: var(--primary); font-size: 1.55rem; }
.card-body p { margin: 0 0 1rem; color: #4f5356; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0; }
.tags span { padding: 4px 12px; border-radius: 999px; background: var(--accent); font-size: 0.9rem; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #e5e5e5;
}
.card-footer strong { color: var(--primary); font-size: 1.2rem; white-space: nowrap; }
.card-footer small { color: #667; font-family: "Raleway", sans-serif; font-weight: 400; }

.card-footer .detail-button:only-child,
.card-footer button:only-child {
  margin-left: auto;
}


.feature-panel, .activities {
  margin-top: 48px;
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.feature-panel h3, .activities h3 { color: var(--primary); font-size: 1.7rem; }
.feature-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feature-list div { display: flex; gap: 14px; align-items: flex-start; }
.feature-list i, .panel i { color: var(--primary); font-size: 1.25rem; margin-top: 5px; }
.feature-list strong { display: block; color: var(--dark); font-size: 1.05rem; }
.feature-list span { color: #606368; }

.seminar-split { margin-bottom: 42px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.stats span { padding: 18px; border-radius: 8px; background: var(--muted); text-align: center; }
.stats strong { display: block; color: var(--primary); font-size: 1.8rem; font-family: "Playfair Display", serif; }
.service-grid, .pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.service-grid article, .price-card, .panel {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 28px;
}
.service-grid i { color: var(--primary); font-size: 2rem; margin-bottom: 12px; }
.service-grid h3, .price-card h4, .panel h3, .panel h4 { color: var(--primary); }
.packages-title { margin: 48px 0 24px; color: var(--primary); text-align: center; font-size: 1.9rem; }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card ul { padding-left: 20px; margin: 10px 0 20px; }
.price-card strong { margin-top: auto; color: var(--primary); font-size: 1.2rem; }
.price-card.highlighted { border: 2px solid var(--primary); transform: scale(1.03); }
.price-card.highlighted span {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}
.center-action { margin-top: 34px; text-align: center; }

.history-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; align-items: start; }
.history-images { display: grid; grid-template-columns: 1fr; gap: 32px; }
.history-images img { width: 100%; height: auto; object-fit: cover; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.14); }
.timeline { max-width: 900px; margin: 0; }
.timeline article { position: relative; padding-left: 34px; padding-bottom: 28px; }
.timeline article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
}
.timeline article::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 22px;
  width: 2px;
  height: calc(100% - 8px);
  background: var(--primary);
}
.timeline article:last-child::after { display: none; }
.timeline h3 { color: var(--primary); font-size: 1.45rem; }

.region-intro { align-items: start; margin-bottom: 36px; }
figcaption { margin-top: 8px; color: #666; font-size: 0.9rem; }
.attraction-card img { height: 210px; }
.attraction-card small { color: #5e6468; }
.attraction-card i { color: var(--primary); }
.activities { background: var(--muted); }
.activities > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.activities article { text-align: center; }
.activities i {
  width: 60px;
  height: 60px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
form label { display: grid; gap: 7px; margin-bottom: 16px; color: #4e5356; font-weight: 600; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 6px;
  padding: 11px 12px;
  font: 400 1rem "Raleway", sans-serif;
  background: #fff;
}

input:focus, select:focus, textarea:focus { outline: 2px solid rgba(111, 127, 99, 0.3); border-color: var(--primary); }
.panel p { margin: 0 0 16px; }
.opening { margin-top: 20px; padding: 18px; border-radius: 8px; background: #f0f0f0; }

.site-footer { padding: 46px 0 28px; color: #fff; background: var(--dark); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 1.2fr; gap: 48px; }
.site-footer h3 { font-size: 1.35rem; }
.site-footer a { display: block; margin-bottom: 8px; color: #fff; }
.site-footer a:hover { color: var(--accent); }
.social { display: flex; gap: 18px; font-size: 1.2rem; }
.newsletter { display: flex; align-items: stretch; }
.newsletter input { border: 0; border-radius: 6px 0 0 6px; }
.newsletter button { border-radius: 0 6px 6px 0; color: #fff; background: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.25);
}
.footer-bottom p:last-child { display: flex; gap: 18px; }

.detail-hero {
  padding: 148px 0 64px;
  background: #fff;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--primary);
  font-weight: 700;
}
.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: end;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}
.detail-hero h1 {
  color: var(--dark);
  font-size: clamp(3rem, 7vw, 5rem);
}
.detail-hero p {
  max-width: 850px;
  font-size: 1.18rem;
}
.detail-tags { margin: 24px 0; }
.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.outline-button {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.outline-button:hover {
  background: rgba(111, 127, 99, 0.08);
}
.booking-card, .info-panel, .cta-panel {
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.11);
}
.booking-card span, .booking-card small {
  display: block;
  color: #64686b;
}
.booking-card strong {
  display: block;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}
.booking-card hr {
  margin: 22px 0;
  border: 0;
  border-top: 1px solid #e2e2e2;
}
.booking-card p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 10px;
  font-size: 1rem;
}
.booking-card i { color: var(--primary); }
.detail-gallery {
  padding: 0 0 72px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.floorplan-section {
  padding-top: 0;
}
.floorplan-card {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.11);
  padding: 32px;
}
.floorplan-card img {
  display: block;
  width: min(600px, 100%);
  height: auto;
  margin: 0 auto;
}

.legal-hero {
  padding: 148px 0 48px;
  background: #fff;
}
.legal-hero h1 {
  color: var(--dark);
  font-size: clamp(3rem, 7vw, 5rem);
}
.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}
.legal-card, .legal-sidebar {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  padding: 34px;
}
.legal-card h2, .legal-sidebar h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-top: 2rem;
}
.legal-card h2:first-child, .legal-sidebar h2:first-child {
  margin-top: 0;
}
.legal-card h3 {
  color: var(--dark);
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
.legal-card h4 {
  color: var(--dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  margin: 1.1rem 0 0.5rem;
}
.legal-card p, .legal-sidebar p {
  margin: 0 0 1rem;
}
.legal-card ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
}
.legal-card li {
  margin-bottom: 0.6rem;
}
.legal-card a, .legal-sidebar a {
  color: var(--primary);
  font-weight: 700;
}
.legal-sidebar .button-primary {
  color: #fff;
}
.legal-sidebar {
  position: sticky;
  top: 120px;
}
.legal-sidebar i {
  color: var(--primary);
  margin-right: 8px;
}
.legal-contact-button {
  min-width: 180px;
}

.event-hero {
  padding: 148px 0 70px;
  background: #fff;
}
.event-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: end;
}
.event-hero h1 {
  color: var(--dark);
  font-size: clamp(3rem, 7vw, 5rem);
}
.event-hero p {
  max-width: 850px;
  font-size: 1.16rem;
}
.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.event-meta-card {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.11);
  padding: 28px;
}
.event-meta-card h2 {
  color: var(--primary);
  font-size: 1.6rem;
}
.event-meta-card p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 14px;
  font-size: 1rem;
}
.event-meta-card i {
  color: var(--primary);
  margin-top: 5px;
  min-width: 18px;
}
.event-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}
.event-story p {
  font-size: 1.08rem;
}
.event-quote {
  margin: 0;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  background: var(--muted);
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.event-quote p {
  margin: 0;
  color: var(--dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.35;
}
.event-gallery {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}
.event-gallery figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.1);
}
.event-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.event-gallery .event-flyer {
  grid-row: auto;
}
.event-gallery .event-flyer img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  background: #fff;
}

.event-gallery .event-feature-photo img {
  height: 560px;
  object-fit: cover;
  object-position: center center;
}
.event-gallery figcaption {
  margin: 0;
  padding: 14px 16px;
  color: var(--dark);
  font-weight: 700;
}
.event-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
}
.event-cta p {
  max-width: 760px;
  font-size: 1.08rem;
}

.gallery-main {
  grid-row: span 2;
}
.detail-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}
.detail-content-grid article p,
.detail-content-grid > div > p {
  font-size: 1.08rem;
}
.info-panel h3, .cta-panel h3 {
  color: var(--primary);
}
.info-panel dl {
  margin: 0;
}
.info-panel div {
  display: grid;
  grid-template-columns: minmax(90px, auto) 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
.info-panel div:last-child { border-bottom: 0; }
.info-panel dt {
  color: #63676a;
  font-weight: 700;
}
.info-panel dd {
  margin: 0;
  color: var(--dark);
  font-weight: 700;
  text-align: right;
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.amenity-grid div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.amenity-grid i {
  color: var(--primary);
  font-size: 1.35rem;
  margin-top: 5px;
}
.amenity-grid strong {
  display: block;
  color: var(--dark);
  font-size: 1.05rem;
}
.amenity-grid span {
  color: #606368;
}

.form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #f8f4e3;
  border-left: 4px solid var(--primary);
  font-weight: 700;
}


@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .split, .history-layout, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .detail-hero-grid, .detail-content-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .event-hero-grid, .event-story-grid, .event-cta { grid-template-columns: 1fr; }
  .event-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-gallery img { height: 220px; }
  .event-gallery .event-flyer img, .event-gallery .event-feature-photo img { height: 460px; }	
  .card-grid, .apartment-grid, .feature-list, .service-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .amenity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .activities > div { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .header-inner { min-height: 76px; }
  .brand { gap: 10px; font-size: 1.05rem; }
  .brand img { width: 58px; height: 50px; }
  .section { padding: 54px 0; }
  .hero { min-height: 78vh; padding-top: 106px; }
  .hero-actions, .newsletter, .footer-bottom { flex-direction: column; }
  .button { width: 100%; }
  .card-grid, .apartment-grid, .feature-list, .service-grid, .pricing-grid, .history-images, .activities > div { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .detail-hero { padding-top: 118px; }
  .legal-hero { padding-top: 118px; }
  .event-hero { padding-top: 118px; }
  .event-gallery { grid-template-columns: 1fr; }
  .event-gallery .event-flyer { grid-row: auto; }
  .event-gallery img { height: 260px; }
  .event-gallery .event-flyer img, .event-gallery .event-feature-photo img { height: auto; max-height: 620px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-grid img { height: 240px; }
  .gallery-main { grid-row: auto; }
  .price-card.highlighted { transform: none; }
  .feature-panel, .activities, .panel, .service-grid article, .price-card { padding: 22px; }
  .card-footer { align-items: stretch; flex-direction: column; }
  .card-footer button { width: 100%; }
  .footer-bottom p:last-child { flex-wrap: wrap; }
}
