:root {
  --red: #ef3f36;
  --red-dark: #c92e27;
  --green: #4d9b35;
  --green-dark: #2f7130;
  --green-soft: #edf8df;
  --blue: #69c9e8;
  --blue-soft: #e5f7fc;
  --yellow: #f9bd2c;
  --cream: #fffdf7;
  --paper: #fffaf0;
  --ink: #164a62;
  --muted: #506875;
  --line: #e8e1d2;
  --shadow: 0 14px 34px rgba(40, 70, 55, .10);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1,
h2 {
  font-family: "Trebuchet MS", "Comic Sans MS", cursive;
}

h1 {
  font-size: clamp(3rem, 5.2vw, 5.3rem);
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 16px;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,247,.96);
  border-bottom: 1px solid rgba(226,220,205,.7);
}

.nav-wrap {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand img {
  width: 270px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  text-decoration: none;
  font-size: .93rem;
  font-weight: 700;
}

.main-nav a:first-child {
  color: var(--green-dark);
  position: relative;
}

.main-nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
}

.main-nav a:hover {
  color: var(--green-dark);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-button {
  background: var(--green);
  color: white;
  white-space: nowrap;
}

.nav-button::before {
  content: "♥";
  margin-right: 8px;
}

.nav-button:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(40,60,45,.14);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 0;
  background:
    radial-gradient(circle at 15% 45%, rgba(255,255,255,.45), transparent 22%),
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.35), transparent 18%),
    linear-gradient(135deg, #9fd35d 0%, #d7e989 38%, #8bc45b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: -42px;
  height: 90px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}

.hero-grid {
  min-height: 395px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 35px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: 20px 0 70px;
}

.hero-copy .eyebrow {
    color: var(--green-dark);
}

.hero h1 {
  color: white;
  max-width: 700px;
  font-weight: 900;
  text-shadow: 0 2px 0 rgba(35,80,35,.12);
}

.hero h1 span {
  color: white;
}

.hero-text {
  max-width: 620px;
  color: var(--green-dark);
  font-size: 1.14rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.button-primary {
  background: var(--green);
  color: white;
}

.button-light {
  background: white;
  color: var(--green-dark);
}

.hero-facts {
  display: none;
}

.hero-logo {
  min-height: 390px;
  display: grid;
  place-items: center;
  position: relative;
  padding-bottom: 40px;
}

.hero-logo::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 220px;
  border-radius: 50%;
  background: rgba(111, 211, 239, .78);
  transform: rotate(-8deg);
  opacity: .9;
}

.hero-logo img {
  position: relative;
  width: min(430px, 90%);
  filter: drop-shadow(0 18px 16px rgba(45,70,45,.18));
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  width: 170px;
  height: 90px;
  right: 7%;
  top: 30px;
  background: rgba(255,255,255,.18);
}

.hero-shape-two {
  width: 120px;
  height: 80px;
  left: 18%;
  bottom: 5px;
  background: rgba(255,255,255,.16);
}

/* FEATURE STRIP */

.quickfacts {
  position: relative;
  z-index: 5;
  padding: 20px 0 45px;
  background: var(--cream);
}

.quickfacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.quickfact {
  display: grid;
  justify-items: center;
  gap: 7px;
}

.quickfact-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 16px rgba(0,0,0,.08);
}

.quickfact:nth-child(1) .quickfact-icon {
  background: #f24b4b;
}

.quickfact:nth-child(2) .quickfact-icon {
  background: var(--yellow);
}

.quickfact:nth-child(3) .quickfact-icon {
  background: #83b935;
}

.quickfact:nth-child(4) .quickfact-icon {
  background: #57c1df;
}

.quickfact strong {
  font-size: 1.05rem;
}

.quickfact span {
  display: block;
  font-size: .9rem;
  font-weight: 700;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: #f4faed;
}

.section-cream {
  background: #fff8e8;
}

.eyebrow {
  display: inline-block;
  color: var(--green-dark);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 9px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading p {
  color: var(--muted);
}

/* VILLA */

.villa-preview {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  background: var(--blue-soft);
  border-radius: 35px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.villa-copy {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.villa-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.villa-photo {
  min-height: 390px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.8), transparent 15%),
    linear-gradient(135deg, #f7e0bf 0%, #f0c99e 45%, #c8dfbd 100%);
  position: relative;
  overflow: hidden;
}

.villa-photo::before {
  content: "";
  position: absolute;
  inset: 14% 11% 12% 11%;
  background: linear-gradient(#fff9e9 0 12%, #f1c79b 12% 100%);
  border-radius: 25px;
  box-shadow: 0 12px 28px rgba(80,70,50,.12);
}

.villa-photo::after {
  content: "🏠 🌈 🧸";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 4rem;
  letter-spacing: 18px;
}

/* TEAM */

.team-panel {
  background: var(--green-soft);
  border-radius: 35px;
  padding: 55px 60px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.team-panel::after {
  content: "♡";
  position: absolute;
  right: 35px;
  top: 20px;
  color: var(--green-dark);
  font-size: 5rem;
  transform: rotate(-12deg);
  pointer-events: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px;
}

.person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
  background: white;
  padding: 30px 25px;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.person-placeholder {
  width: 150px;
  height: 150px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dcebb7;
  color: var(--green-dark);
  font-size: 3rem;
  font-weight: 900;
  overflow: hidden;
  border: 5px solid rgba(91,151,46,.35);
}

.person-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.person-role {
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.person-card h3 {
  margin: 3px 0 8px;
  font-size: 1.6rem;
}

.person-card p {
  color: var(--muted);
  max-width: 300px;
  margin: 0 auto;
  font-size: .95rem;
}

.team-note {
  max-width: 850px;
  margin: 30px auto 0;
  padding: 22px 28px;
  border-left: 5px solid var(--yellow);
  background: rgba(255,255,255,.65);
  border-radius: 0 18px 18px 0;
}

/* TEAM – Tablet und Smartphone */

@media (max-width: 850px) {
  .team-panel {
    padding: 42px 28px;
  }
}

@media (max-width: 600px) {
  .team-panel {
    padding: 35px 18px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .person-card {
    padding: 25px 20px;
  }

  .person-placeholder {
    width: 120px;
    height: 120px;
  }

  .team-note {
    padding: 20px;
  }
}

/* REMAINING CONTENT */

.intro-grid,
.concept-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.intro-copy,
.concept-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.topic-card {
  border-radius: var(--radius);
  padding: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.feature-yellow {
  background: #fff8dc;
}

.feature-green {
  background: #effbe8;
}

.feature-blue {
  background: #eafaff;
}

.feature-icon,
.topic-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.feature-card p,
.topic-card p {
  color: var(--muted);
}

.concept-visual {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.blob {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  transform: rotate(12deg);
}

.blob-red {
  background: #ffe0d8;
}

.concept-logo {
  position: relative;
  z-index: 2;
  width: 300px;
}

.concept-copy p {
  margin-bottom: 18px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.topic-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.topic-number {
  position: absolute;
  right: 22px;
  top: 20px;
  color: #cfd6d1;
  font-size: .8rem;
  font-weight: 900;
}

.topic-card:nth-child(1) {
  border-top: 7px solid var(--green);
}

.topic-card:nth-child(2) {
  border-top: 7px solid var(--blue);
}

.topic-card:nth-child(3) {
  border-top: 7px solid var(--yellow);
}

.topic-card:nth-child(4) {
  border-top: 7px solid var(--red);
}

.timeline {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.time-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  background: white;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: 0 8px 24px rgba(49,60,52,.06);
}

.time-item strong {
  color: var(--green-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}

.gallery-placeholder {
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #cceff5, #fff2bf);
  color: #61716a;
  font-weight: 800;
}

.gallery-placeholder.tall {
  grid-row: span 2;
}

.gallery-placeholder.wide {
  grid-column: span 2;
}

.contact {
  background: var(--green-dark);
  color: white;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center;
  padding: 65px;
  background: linear-gradient(135deg, #3d8f31, #276b27);
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.contact .eyebrow {
  color: #ffe16b;
}

.contact p {
  color: rgba(255,255,255,.84);
}

.contact-details {
  padding-left: 35px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.contact-details h3 {
  color: #fff;
}

.contact-details p {
  margin-bottom: 12px;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact .button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.contact .button-light {
  background: white;
  color: var(--ink);
}

.instagram-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  background: #19351f;
  color: rgba(255,255,255,.82);
  padding: 28px 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

.footer-wrap strong,
.footer-wrap span {
  display: block;
}

.footer-wrap strong {
  color: white;
}

.footer-wrap span {
  font-size: .85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 700;
}

/* COOKIE */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 11px 20px;
  background: rgba(255,253,247,.97);
  border-top: 1px solid #e7e1d5;
  box-shadow: 0 -6px 24px rgba(30,50,40,.08);
}

.cookie-content {
  width: min(1180px, 100%);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cookie-content > div {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-content > div::before {
  content: "🍪";
  font-size: 1.2rem;
}

.cookie-content strong {
  font-size: .78rem;
  white-space: nowrap;
}

.cookie-content p {
  margin: 0;
  font-size: .68rem;
  line-height: 1.35;
  color: var(--muted);
}

.cookie-button {
  border: 0;
  border-radius: 999px;
  padding: 10px 28px;
  background: var(--green);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-button:hover {
  background: var(--green-dark);
}

.cookie-banner[hidden] {
  display: none;
}

@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }

  .nav-button {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr .8fr;
  }

  .brand img {
    width: 230px;
  }
}

@media (max-width: 850px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .hero-grid,
  .intro-grid,
  .concept-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 15px;
  }

  .hero-logo {
    min-height: 300px;
  }

  .quickfacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .villa-preview {
    grid-template-columns: 1fr;
  }

  .villa-photo {
    min-height: 260px;
  }

  .feature-grid,
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-panel {
    padding: 42px 28px;
  }

  .contact-details {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.22);
    padding: 30px 0 0;
  }
}

@media (max-width: 600px) {
  .brand img {
    width: 180px;
    height: 65px;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav-button {
    padding-inline: 15px;
    font-size: .78rem;
  }

  .hero {
    padding-top: 20px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-logo {
    min-height: 250px;
  }

  .hero-logo img {
    width: 290px;
  }

  .hero-logo::before {
    width: 300px;
    height: 170px;
  }

  .quickfacts-grid {
    gap: 22px 8px;
  }

  .quickfact-icon {
    width: 62px;
    height: 62px;
    font-size: 1.5rem;
  }

  .section {
    padding: 70px 0;
  }

  .feature-grid,
  .topic-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid,
  .team-panel {
    padding: 38px 20px;
  }

  .team-panel::after {
    display: none;
  }

  .person-card {
    grid-template-columns: 90px 1fr;
    padding: 25px;
  }

  .person-placeholder {
    width: 120px;
    height: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .person-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 190px);
  }

  .gallery-placeholder.tall,
  .gallery-placeholder.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .contact-box {
    padding: 35px 25px;
    border-radius: 28px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-content > div {
    align-items: flex-start;
  }

  .cookie-content strong {
    white-space: normal;
  }
}

/* Hamburger-Button auf Desktop ausblenden */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #5b5147;
}

/* Mobile Ansicht */

@media (max-width: 768px) {
  .nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .brand img {
    max-width: 78px;
    height: auto;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .nav-button {
    display: none;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    order: 3;
    padding: 15px 0;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    display: block;
    padding: 12px 10px;
    text-align: center;
    border-top: 1px solid #eee5dc;
  }
}

/* Korrekturen für iPhone und andere Smartphones */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

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

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 30px);
    max-width: 100%;
  }

  .nav-wrap {
    width: calc(100% - 30px);
    max-width: 100%;
  }

  .brand img {
    width: 58px;
    max-width: 100%;
    height: auto;
  }

  .hero-logo img {
    width: min(290px, 100%);
  }

  .hero-logo::before {
    max-width: 100%;
  }

  .contact-box {
    width: 100%;
    max-width: 100%;
  }

  .cookie-content {
    width: 100%;
    max-width: 100%;
  }

  .gallery-grid {
    width: 100%;
  }
}

/* Abstand zum fixierten Header */

#start {
  scroll-margin-top: 100px;
}

@media (max-width: 600px) {
  #start {
    scroll-margin-top: 80px;
  }
}

.gallery-placeholder {
  overflow: hidden;
  position: relative;
}

.gallery-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Galerie: Bilder vollständig und mobil gut sichtbar darstellen */
.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  align-items: stretch;
  gap: 20px;
}

.gallery-placeholder,
.gallery-placeholder.tall,
.gallery-placeholder.wide {
  min-width: 0;
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 3;
  grid-row: auto;
  grid-column: auto;
  overflow: hidden;
  background: #f4f6f1;
  border-radius: 20px;
}

.gallery-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }

  .gallery-placeholder,
  .gallery-placeholder.tall,
  .gallery-placeholder.wide {
    width: 100%;
    aspect-ratio: auto;
    min-height: 0;
    height: auto;
    border-radius: 16px;
  }

  .gallery-placeholder img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
  }
}
