/*
  HOREGA Homepage - Gestaltung
  Farben oben im :root-Bereich anpassen.
  Bilder werden im Ordner assets ausgetauscht.
*/

:root {
      --ink: #173044;
      --blue: #315b76;
      --blue-dark: #183245;
      --cream: #f5f1ea;
      --sand: #d0ad72;
      --sand-dark: #a98652;
      --white: #ffffff;
      --muted: #637483;
      --line: rgba(23,48,68,.15);
      --shadow: 0 24px 70px rgba(20, 42, 58, .18);
      --radius: 26px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.55;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: absolute;
      inset: 0 0 auto 0;
      z-index: 10;
      padding: 26px 0;
      color: #fff;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .brand-logo-link {
      display: inline-flex;
      align-items: center;
      padding: 8px 10px;
      border-radius: 16px;
      background: rgba(255,255,255,.94);
      box-shadow: 0 12px 34px rgba(0,0,0,.18);
      backdrop-filter: blur(8px);
    }
    .brand-logo {
      width: 180px;
      max-width: 42vw;
      height: auto;
      border-radius: 8px;
      display: block;
    }
    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 8px 0 8px 0;
      background: rgba(255,255,255,.92);
      color: var(--blue);
      display: grid;
      place-items: center;
      font-family: Georgia, serif;
      font-style: italic;
      font-size: 34px;
      line-height: 1;
    }
    .brand small {
      display: block;
      font-size: 10px;
      opacity: .82;
      letter-spacing: .12em;
      margin-top: -4px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      letter-spacing: .03em;
    }
    .nav-links a {
      opacity: .9;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-cta {
      padding: 11px 16px;
      border: 1px solid rgba(255,255,255,.55);
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      backdrop-filter: blur(8px);
    }

    .hero {
      min-height: 92vh;
      position: relative;
      display: grid;
      align-items: center;
      color: #fff;
      overflow: hidden;
      background-image:
        linear-gradient(90deg, rgba(16,36,51,.94) 0%, rgba(16,36,51,.80) 43%, rgba(16,36,51,.48) 68%, rgba(16,36,51,.22) 100%),
        url("../assets/hero-horega-hotel-am-see.jpg");
      background-size: cover;
      background-position: center center;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 150px;
      background: linear-gradient(0deg, var(--cream), rgba(245,241,234,0));
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 130px 0 110px;
      max-width: 760px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.86);
      margin-bottom: 22px;
    }
    .eyebrow::before {
      content: "";
      width: 54px;
      height: 2px;
      background: var(--sand);
    }
    h1 {
      margin: 0;
      font-size: clamp(42px, 7vw, 82px);
      line-height: .98;
      letter-spacing: -.045em;
    }
    .hero-sub {
      font-size: clamp(20px, 2.5vw, 30px);
      margin: 24px 0 12px;
      color: rgba(255,255,255,.92);
      font-weight: 500;
    }
    .hero-text {
      max-width: 620px;
      font-size: 18px;
      color: rgba(255,255,255,.82);
      margin-bottom: 34px;
    }
    .button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }
    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(0,0,0,.18);
    }
    .btn-primary {
      background: var(--sand);
      color: #102433;
    }
    .btn-secondary {
      border: 1px solid rgba(255,255,255,.55);
      color: #fff;
      background: rgba(255,255,255,.08);
    }

    .trust-strip {
      position: relative;
      z-index: 3;
      margin-top: -58px;
    }
    .trust-grid {
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
    }
    .trust-item {
      padding: 28px 26px;
      border-right: 1px solid var(--line);
    }
    .trust-item:last-child { border-right: 0; }
    .trust-item strong {
      display: block;
      color: var(--blue);
      font-size: 28px;
      line-height: 1;
      margin-bottom: 8px;
    }
    .trust-item span {
      font-size: 14px;
      color: var(--muted);
    }

    section {
      padding: 96px 0;
    }
    .section-kicker {
      color: var(--sand-dark);
      font-size: 13px;
      letter-spacing: .18em;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(34px, 4.6vw, 56px);
      line-height: 1.04;
      letter-spacing: -.035em;
      margin: 0 0 22px;
    }
    .section-lead {
      font-size: 19px;
      color: var(--muted);
      max-width: 760px;
      margin: 0;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
      gap: 48px;
      align-items: center;
    }
    .value-card {
      background: #fff;
      padding: 34px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid rgba(23,48,68,.08);
    }
    .value-card h3 {
      margin: 0 0 14px;
      font-size: 24px;
      letter-spacing: -.02em;
    }
    .check-list {
      padding: 0;
      margin: 20px 0 0;
      list-style: none;
    }
    .check-list li {
      display: flex;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(23,48,68,.08);
    }
    .check-list li:last-child { border-bottom: 0; }
    .check-list li::before {
      content: "✓";
      color: var(--sand-dark);
      font-weight: 900;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 42px;
    }
    .card {
      background: #fff;
      border-radius: 22px;
      padding: 28px 24px;
      border: 1px solid rgba(23,48,68,.08);
      box-shadow: 0 14px 35px rgba(20,42,58,.08);
    }
    .card .number {
      color: var(--sand-dark);
      font-weight: 900;
      margin-bottom: 18px;
      display: block;
    }
    .card h3 {
      margin: 0 0 10px;
      font-size: 21px;
      letter-spacing: -.02em;
    }
    .card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .dark {
      background: var(--blue-dark);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .dark::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 16% 12%, rgba(208,173,114,.20), transparent 30%),
        radial-gradient(circle at 88% 80%, rgba(255,255,255,.10), transparent 28%);
      pointer-events: none;
    }
    .dark .container { position: relative; z-index: 1; }
    .dark .section-lead, .dark .card p { color: rgba(255,255,255,.74); }
    .dark .card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: none;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      margin-top: 42px;
    }
    .step {
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.07);
      border-radius: 20px;
      padding: 24px 18px;
      min-height: 150px;
    }
    .step strong {
      display: block;
      color: var(--sand);
      font-size: 28px;
      margin-bottom: 20px;
    }
    .step span {
      font-weight: 700;
      letter-spacing: .02em;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 42px;
      align-items: stretch;
    }
    .project-card {
      position: relative;
      display: block;
      margin: 0;
      width: 100%;
      height: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 24px;
      overflow: hidden;
      background: #d8d2c8;
      box-shadow: 0 16px 36px rgba(20,42,58,.12);
    }
    .project-card img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform .45s ease;
    }
    .project-card:hover img { transform: scale(1.045); }
    .project-card figcaption {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      padding: 12px 14px;
      border-radius: 16px;
      color: #fff;
      background: rgba(16,36,51,.72);
      backdrop-filter: blur(8px);
      font-weight: 700;
    }

    .lead-box {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
      gap: 28px;
      align-items: stretch;
      background: #fff;
      border-radius: 34px;
      padding: 42px;
      box-shadow: var(--shadow);
    }
    .lead-box h2 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.04;
      letter-spacing: -.035em;
      margin: 0 0 18px;
    }
    .lead-box p {
      color: var(--muted);
      font-size: 18px;
    }
    .lead-panel {
      background: var(--blue-dark);
      color: #fff;
      border-radius: 26px;
      padding: 30px;
    }
    .lead-panel h3 {
      margin: 0 0 16px;
      font-size: 22px;
    }
    .lead-panel ul {
      list-style: none;
      margin: 0 0 24px;
      padding: 0;
    }
    .lead-panel li {
      padding: 9px 0;
      display: flex;
      gap: 10px;
      color: rgba(255,255,255,.82);
    }
    .lead-panel li::before {
      content: "→";
      color: var(--sand);
      font-weight: 900;
    }

    .references {
      background: #fff;
    }
    .ref-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 38px;
    }
    .ref-cloud .ref-item,
    .ref-cloud span {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 14px;
      border: 1px solid rgba(23,48,68,.14);
      border-radius: 999px;
      color: var(--blue-dark);
      background: rgba(49,91,118,.05);
      font-weight: 650;
      font-size: 14px;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }
    .ref-cloud .ref-item[href] {
      cursor: pointer;
    }
    .ref-cloud .ref-item[href]::after {
      content: "↗";
      font-size: 12px;
      opacity: .55;
    }
    .ref-cloud .ref-item[href]:hover {
      transform: translateY(-2px);
      background: rgba(208,173,114,.18);
      border-color: rgba(208,173,114,.55);
    }

    .contact {
      padding-bottom: 0;
    }
    .contact-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
      gap: 38px;
      align-items: center;
      background: var(--blue);
      color: #fff;
      border-radius: 36px 36px 0 0;
      padding: 54px;
      margin-bottom: -1px;
    }
    .contact-wrap h2 {
      font-size: clamp(34px, 4vw, 56px);
      line-height: 1.04;
      letter-spacing: -.035em;
      margin: 0 0 16px;
    }
    .contact-wrap p {
      color: rgba(255,255,255,.78);
      font-size: 18px;
    }
    .contact-card {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 24px;
      padding: 28px;
    }
    .contact-logo {
      width: 240px;
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 0 18px 0;
      border-radius: 14px;
      box-shadow: 0 12px 28px rgba(0,0,0,.14);
    }
    .contact-card a,
    .contact-card span {
      display: block;
      color: #fff;
      margin: 10px 0;
    }


    .contact-card .instagram-link {
      text-decoration: underline;
      text-underline-offset: 4px;
      font-weight: 600;
    }
    .contact-card .instagram-link:hover {
      color: #f0c987;
    }

    footer {
      background: var(--blue);
      color: rgba(255,255,255,.7);
      padding: 24px 0 38px;
      font-size: 14px;
    }
    footer .container {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(255,255,255,.16);
      padding-top: 24px;
    }

    footer .footer-ki-hinweis {
      width: min(1160px, calc(100% - 40px));
      margin: 18px auto 0;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.14);
      color: rgba(255,255,255,.72);
      font-size: 12px;
      line-height: 1.55;
    }

    @media (max-width: 980px) {
      .nav-links { display: none; }
      .hero { min-height: 820px; }
      .brand-logo { width: 165px; max-width: 58vw; }
      .trust-grid, .cards, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .intro-grid, .lead-box, .contact-wrap {
        grid-template-columns: 1fr;
      }
      .process {
        grid-template-columns: repeat(3, 1fr);
      }
    }
    @media (max-width: 640px) {
      .container { width: min(100% - 28px, 1160px); }
      .hero-content { padding-top: 112px; }
      .brand-logo-link { padding: 7px 8px; border-radius: 14px; }
      .brand-logo { width: 150px; max-width: 64vw; }
      .trust-grid, .cards, .gallery-grid, .process {
        grid-template-columns: 1fr;
      }
      .trust-strip { margin-top: -34px; }
      .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
      section { padding: 70px 0; }
      .lead-box, .contact-wrap { padding: 28px; border-radius: 26px; }
      .button-row .btn { width: 100%; }
      footer .container { flex-direction: column; }
    }


/* Projektwelt: klickbare Karten und Projektgalerien */
.project-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 24px;
  height: 100%;
}
.project-link:focus-visible {
  outline: 4px solid var(--sand);
  outline-offset: 4px;
}
.project-card .project-open {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #102433;
  background: rgba(245,241,234,.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
}
.project-link:hover .project-open,
.project-link:focus-visible .project-open {
  opacity: 1;
  transform: translateY(0);
}
.project-detail-body {
  background: var(--cream);
}
.project-hero-detail {
  min-height: 56vh;
  display: grid;
  align-items: center;
  color: #fff;
  padding: 150px 0 80px;
  background-image:
    linear-gradient(90deg, rgba(16,36,51,.94) 0%, rgba(16,36,51,.82) 45%, rgba(16,36,51,.46) 100%),
    var(--project-hero-image);
  background-size: cover;
  background-position: center center;
}
.project-hero-detail h1 {
  font-size: clamp(42px, 6vw, 82px);
  line-height: .96;
  letter-spacing: -.055em;
  margin: 12px 0 18px;
  max-width: 820px;
}
.project-hero-detail p {
  max-width: 700px;
  color: rgba(255,255,255,.82);
  font-size: 19px;
}
.project-detail-gallery {
  padding: 76px 0 90px;
}
.project-detail-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 34px;
}
.project-detail-intro h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -.035em;
}
.project-detail-note {
  max-width: 460px;
  color: var(--muted);
  margin: 0;
}
.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.project-gallery-item {
  margin: 0;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(20,42,58,.12);
  border: 1px solid rgba(23,48,68,.08);
}
.project-gallery-item a {
  display: block;
  overflow: hidden;
  background: #d8d2c8;
  aspect-ratio: 4 / 3;
}
.project-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.project-gallery-item:hover img {
  transform: scale(1.045);
}
.project-gallery-item figcaption {
  padding: 14px 16px 16px;
  font-weight: 800;
  color: var(--ink);
}
.project-page-back {
  margin-top: 28px;
}
.project-file-hint {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(49,91,118,.08);
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 980px) {
  .project-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .project-detail-intro { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .project-gallery-grid { grid-template-columns: 1fr; }
  .project-hero-detail { padding-top: 130px; }
  .project-card .project-open { opacity: 1; transform: none; }
}


/* SEO- und Leistungsschwerpunkte */
.seo-focus {
  padding: 86px 0;
  background: linear-gradient(180deg, #f5f1ea 0%, #ffffff 100%);
  border-top: 1px solid rgba(23,48,68,.10);
}
.seo-focus .section-title {
  max-width: 920px;
}
.seo-keyword-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.seo-keyword-group {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(23,48,68,.10);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(20,42,58,.08);
}
.seo-keyword-group h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: -.01em;
}
.seo-keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.seo-keyword-tags span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(49,91,118,.08);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}
@media (max-width: 780px) {
  .seo-keyword-groups { grid-template-columns: 1fr; }
  .seo-focus { padding: 70px 0; }
}


.gallery-edit-note {
  margin: 0 0 26px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(208,173,114,.16);
  border: 1px solid rgba(208,173,114,.36);
  color: var(--blue-dark);
  font-size: 14px;
}
.gallery-edit-note strong { display: block; margin-bottom: 4px; }
