:root {
  --bg: #f8f4ed;
  --bg-soft: #f2ede3;
  --bg-panel: #ffffff;
  --line: rgba(175, 132, 65, 0.34);
  --line-soft: rgba(77, 57, 27, 0.16);
  --text: #2f2416;
  --muted: #6f5f47;
  --gold: #b8893f;
  --gold-strong: #9b6f2f;
  --shadow: 0 18px 36px rgba(71, 51, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 19% 10%, rgba(197, 156, 91, 0.16) 0%, transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(222, 193, 147, 0.14) 0%, transparent 38%),
    linear-gradient(180deg, #fbf8f1 0%, #f5eee3 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body.page-transition-enabled {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 420ms ease;
}

body.page-transition-enabled.page-ready {
  opacity: 1;
  transform: translateY(0);
}

body.page-transition-enabled.page-leaving {
  opacity: 0;
  transform: translateY(10px);
}

body.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.contact-page main {
  flex: 1;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1320px, 95%);
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
}

.bg-glow-left {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 80px;
  background: rgba(200, 154, 86, 0.22);
}

.bg-glow-right {
  width: 260px;
  height: 260px;
  right: -100px;
  top: 260px;
  background: rgba(225, 196, 151, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(9px);
  background: linear-gradient(180deg, rgba(254, 252, 248, 0.98) 0%, rgba(247, 240, 230, 0.93) 100%);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-self: start;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Cinzel", serif;
  font-size: 1.85rem;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-family: "Cinzel", serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
}

.main-nav {
  justify-self: center;
  display: flex;
  gap: 1.7rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.main-nav a {
  position: relative;
  color: #4a3924;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 220ms ease;
  transform-origin: center;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--gold);
  padding: 0.38rem 0.62rem;
  border-radius: 10px;
  font-size: 1.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.28rem;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.7rem;
  border: 1px solid transparent;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(180deg, #f0c978 0%, #d8a656 100%);
  color: #17120a;
  border-color: rgba(255, 216, 142, 0.6);
  box-shadow: 0 10px 30px rgba(226, 176, 83, 0.25);
}

.btn-outline {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.section-border-bottom {
  border-bottom: 1px solid var(--line-soft);
}

.hero {
  padding: 0;
}

.hero-grid {
  position: relative;
  width: 100%;
  min-height: 610px;
  overflow: hidden;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(28, 21, 14, 0.34) 0%, rgba(28, 21, 14, 0.24) 28%, rgba(28, 21, 14, 0.08) 48%, rgba(28, 21, 14, 0.02) 62%, rgba(28, 21, 14, 0.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2.8rem 1.35rem 1.8rem;
  max-width: 920px;
  background: linear-gradient(
    90deg,
    rgba(255, 252, 246, 0.96) 0%,
    rgba(255, 249, 240, 0.92) 58%,
    rgba(255, 246, 234, 0.68) 76%,
    rgba(255, 246, 234, 0.4) 88%,
    rgba(255, 246, 234, 0.2) 95%,
    rgba(255, 246, 234, 0.06) 100%
  );
  border: 0;
  box-shadow: 0 8px 22px rgba(84, 62, 31, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(2px);
}

.hero-grid {
  min-height: 540px;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
}

@media (min-width: 761px) {
  .hero .hero-content-wrap.container {
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: inherit;
  }

  .hero-content {
    min-height: inherit;
    max-width: none;
    width: 50%;
    margin: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 0.95rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.1;
}

.hero h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
}

.hero h2 {
  font-size: clamp(1.05rem, 1.7vw, 2rem);
  font-family: "Outfit", sans-serif;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.lead {
  margin-top: 0.95rem;
  color: #4f402d;
  max-width: 51ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin: 1.8rem 0 2rem;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1rem;
  max-width: 560px;
  border-top: 1px solid var(--line-soft);
  padding-top: 1.1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-right: 1px solid var(--line-soft);
  padding-right: 0.8rem;
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item .icon {
  color: var(--gold);
  font-size: 1.5rem;
}

.stat-item strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
}

.stat-item span {
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  min-height: 100%;
  background: #f7f0e5;
}

.hero-fader {
  position: absolute;
  inset: 0;
}

.hero-fade-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: brightness(0.8) contrast(1.05) saturate(0.95);
  --hero-scale-min: 1.005;
  --hero-scale-max: 1.028;
  transform: scale(var(--hero-scale-min));
  transform-origin: 50% 50%;
  animation: hero-image-breathe 42s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  transition: opacity 2200ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-fade-layer[src*="hero.jpg"] {
  object-position: center 16%;
}

.hero-fade-layer.is-active {
  opacity: 1;
}

.hero-collage {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-tile:first-child::after {
  border-left: 0;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.78) contrast(1.05) saturate(0.92);
  --hero-scale-min: 1.005;
  --hero-scale-max: 1.028;
  transform: scale(var(--hero-scale-min));
  transform-origin: 50% 50%;
  animation: hero-image-breathe 42s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  transition: opacity 480ms ease, transform 480ms ease;
}

.hero-tile img.is-swapping {
  opacity: 0.18;
  transform: scale(1.01);
}

.hero-visual img.is-swapping {
  opacity: 0.18;
  transform: scale(1.01);
}

.hero-tile.is-fixed img {
  object-position: 86% center;
  filter: brightness(0.82) contrast(1.05) saturate(0.95);
}

.hero-collage img[src*="dieses6.png"] {
  object-position: 8% center;
}

.hero-collage img[src*="dieses3.png"] {
  object-position: 98% center;
}

.greek-page .hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 86% center;
  filter: brightness(0.82) contrast(1.05) saturate(0.95);
  --hero-scale-min: 1.005;
  --hero-scale-max: 1.028;
  transform: scale(var(--hero-scale-min));
  transform-origin: 50% 50%;
  animation: hero-image-breathe 42s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  transition: opacity 480ms ease, transform 480ms ease;
}

@keyframes hero-image-breathe {
  0%,
  100% {
    transform: scale(var(--hero-scale-min));
  }

  50% {
    transform: scale(var(--hero-scale-max));
  }
}

.hero [data-hero-shimmer] {
  display: inline-block;
}

.hero [data-hero-shimmer] .shimmer-word {
  display: inline-block;
  white-space: nowrap;
}

.hero [data-hero-shimmer] .char {
  display: inline-block;
  color: inherit;
  text-shadow: 0 0 0 rgba(255, 241, 200, 0);
  animation: hero-char-shine 18s ease-in-out infinite;
  animation-delay: calc(var(--char-index, 0) * 0.14s);
}

.hero [data-hero-shimmer] .char.space {
  width: 0.32em;
}

@keyframes hero-char-shine {
  0%,
  92%,
  100% {
    opacity: 1;
    text-shadow: 0 0 0 rgba(255, 241, 200, 0);
  }

  96% {
    opacity: 1;
    text-shadow: 0 0 14px rgba(255, 241, 200, 0.88), 0 0 28px rgba(220, 180, 106, 0.42);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 15, 10, 0.28) 0%, rgba(21, 15, 10, 0.16) 36%, rgba(21, 15, 10, 0.06) 60%, rgba(21, 15, 10, 0.2) 100%),
    radial-gradient(circle at 58% 25%, rgba(34, 24, 14, 0.18), transparent 34%),
    radial-gradient(circle at 70% 34%, rgba(34, 24, 14, 0.1), transparent 40%);
}

.service-strip {
  background: linear-gradient(180deg, rgba(249, 244, 235, 0.86), rgba(243, 235, 223, 0.95));
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-card {
  padding: 1.32rem 1.1rem;
  border-right: 1px solid var(--line-soft);
}

.strip-card:last-child {
  border-right: 0;
}

.strip-icon {
  color: var(--gold);
  font-size: 1.22rem;
}

.strip-card h3 {
  margin-top: 0.6rem;
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.strip-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.87rem;
}

.about {
  padding: 2.55rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: 0.55rem;
  align-items: stretch;
}

.about-content {
  max-width: 540px;
}

.about-content h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  gap: 0.58rem;
}

.gallery-grid img,
.gallery-page-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  border-radius: 0;
  box-shadow: var(--shadow);
  --gallery-zoom-min: 1;
  --gallery-zoom-max: 1.06;
  --gallery-zoom-delay: 0s;
  transform: scale(var(--gallery-zoom-min));
  animation: gallery-image-breathe 10s ease-in-out infinite;
  animation-delay: var(--gallery-zoom-delay);
}

@keyframes gallery-image-breathe {
  0%,
  100% {
    transform: scale(var(--gallery-zoom-min));
  }

  50% {
    transform: scale(var(--gallery-zoom-max));
  }
}

.content-block {
  padding: 4.2rem 0;
}

.content-block h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.65rem);
  margin-bottom: 1rem;
}

.two-col-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.two-col-copy p {
  color: var(--muted);
}

#leistungen-details h2,
#greek-special h2 {
  max-width: 18ch;
}

#leistungen-details .two-col-copy,
#greek-special .two-col-copy {
  gap: 0.9rem;
}

.prose-flow {
  max-width: 980px;
}

.prose-flow h3 {
  margin: 1.2rem 0 0.45rem;
  color: #9d6f2f;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  letter-spacing: 0.02em;
}

.prose-flow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.prose-flow p + h3 {
  margin-top: 1.35rem;
}

.prose-flow p + p {
  margin-top: 0.7rem;
}

.prose-flow::after {
  content: "";
  display: block;
  clear: both;
}

.greek-checklist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.greek-checklist li {
  position: relative;
  padding: 0.72rem 0.78rem 0.72rem 2.25rem;
  border-radius: 12px;
  border: 1px solid rgba(206, 169, 106, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 242, 231, 0.78));
  color: var(--muted);
  line-height: 1.62;
}

.greek-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0.78rem;
  top: 0.72rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: #1f76dc;
  box-shadow: 0 5px 14px rgba(16, 73, 145, 0.28);
}

.greek-checklist strong {
  color: #7d5727;
}

.profile-rotator {
  margin-top: 1rem;
  width: 220px;
  height: 220px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(184, 137, 63, 0.42);
  box-shadow: 0 10px 24px rgba(89, 64, 30, 0.16);
  background: #f6efe3;
}

@media (min-width: 761px) {
  .prose-flow .profile-rotator {
    float: right;
    margin: 0.2rem 0 1rem 1.4rem;
    width: 260px;
    height: 260px;
    border-radius: 24px;
  }
}

.profile-rotator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: opacity 320ms ease, transform 320ms ease;
}

.profile-rotator--dj img {
  object-position: 96% 22%;
}

.profile-rotator img.is-swapping {
  opacity: 0.2;
  transform: scale(0.98);
}

.inline-greek-block {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

#leistungen-details .two-col-copy p,
#greek-special .two-col-copy p {
  margin: 0;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 246, 239, 0.82));
  color: var(--muted);
}

.pill-row {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  color: #8b632b;
  font-size: 0.83rem;
  background: rgba(219, 176, 92, 0.12);
}

.leistungen-cta {
  margin-top: 1.15rem;
}

.setup-highlight {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
}

.setup-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 1rem;
  align-items: start;
}

.setup-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.setup-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.setup-copy p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

.setup-copy h3 {
  margin: 0.2rem 0 0.45rem;
  color: #9d6f2f;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
}

.setup-copy ul {
  margin: 0 0 0.9rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.setup-copy li {
  margin-bottom: 0.48rem;
  line-height: 1.62;
}

.setup-copy strong {
  color: #6e4e24;
}

.greek-cta {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.greek-cta h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  color: #8c632e;
}

.greek-cta p {
  margin: 0 0 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.greek-cta-slideshow {
  width: min(100%, 860px);
  height: auto;
  aspect-ratio: 16 / 10;
  margin: 0.15rem 0 1.1rem;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(38, 28, 14, 0.2);
}

.greek-cta-slideshow img {
  object-position: center 28%;
}

.btn-greek-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 78, 161, 0.7);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(16, 73, 145, 0.28);
  background: linear-gradient(180deg, #1f76dc 0%, #145dbd 100%);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.btn-greek-flag:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 14px 28px rgba(16, 73, 145, 0.34);
}

.greek {
  background: linear-gradient(130deg, rgba(206, 169, 106, 0.16), transparent 45%), var(--bg-soft);
}

.video-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.video-cards article,
.quotes blockquote {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(247, 240, 228, 0.82));
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.1rem;
}

.video-cards h3 {
  font-size: 1.06rem;
  margin-bottom: 0.45rem;
}

.video-cards p {
  color: var(--muted);
  margin: 0;
}

.video-slider {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
}

.video-track-wrap {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 240, 229, 0.82));
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-frame a {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  filter: brightness(0.96) contrast(1.02);
}

.video-play-badge {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  white-space: nowrap;
  border: 1px solid rgba(240, 201, 120, 0.55);
  background: rgba(255, 253, 249, 0.92);
  color: #8f642a;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 200ms ease, transform 200ms ease;
}

.slider-arrow:hover {
  background: rgba(248, 239, 226, 0.95);
  transform: translateY(-1px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(125, 96, 52, 0.32);
  cursor: pointer;
}

.slider-dots .dot.active {
  width: 28px;
  background: linear-gradient(90deg, #f0c978, #d8a656);
}

.video-fallback {
  margin-top: 0.8rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.video-fallback a {
  color: var(--gold-strong);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.video-details {
  margin-top: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1.05rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 240, 229, 0.8));
}

.video-details h3 {
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
  color: #8f652c;
}

.video-details-content p {
  margin: 0 0 0.55rem;
  color: var(--muted);
}

.video-details-content ul {
  margin: 0.2rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.video-details-content li {
  margin-bottom: 0.35rem;
}

.gallery-page-intro {
  padding-bottom: 2rem;
}

.gallery-lead {
  color: var(--muted);
  max-width: 70ch;
}

.gallery-section-title {
  margin-bottom: 1rem;
  color: #956a31;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 0.65rem;
}

.gallery-page-grid img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
}

.youtube-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 0.8rem;
}

.youtube-gallery-card {
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 240, 229, 0.82));
  transition: transform 200ms ease;
}

.youtube-gallery-card:hover {
  transform: translateY(-2px);
}

.youtube-gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.youtube-gallery-card span {
  display: block;
  padding: 0.8rem;
  color: #5b4a35;
  font-size: 0.92rem;
}

.pit-page .pit-hero-intro h2 {
  max-width: 22ch;
  margin-bottom: 0.7rem;
}

.pit-page .gallery-lead {
  max-width: 58ch;
  font-size: 1rem;
  color: var(--muted);
}

.pit-page .pit-story-section {
  padding-top: 3.1rem;
}

.pit-page .pit-story-prose {
  max-width: 920px;
  margin: 0 auto;
  padding-top: 0.35rem;
}

.pit-page .pit-story-prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.pit-page .pit-story-prose h3 {
  margin: 1.75rem 0 0.55rem;
  color: #9d6f2f;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  letter-spacing: 0.03em;
}

.pit-page .pit-story-intro {
  color: #6a4f2a;
  font-family: "Cinzel", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.35;
  margin: 0 0 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(220, 180, 106, 0.35);
}

.pit-page .pit-story-signoff {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  color: #7a5c31;
}

.pit-page .pit-cta-row {
  margin-top: 1.15rem;
}

.pit-page .pit-gallery-section .gallery-section-title {
  margin-bottom: 1.1rem;
}

.pit-page .pit-contact-strip .pill-row {
  margin-top: 1rem;
}

.pit-page .pit-contact-strip .pill-row span {
  padding: 0.5rem 0.9rem;
}

.pit-page .pit-contact-strip .pill-row a {
  color: inherit;
  text-decoration: none;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}

.pit-page .hero-tile img {
  object-position: 58% center;
  --hero-scale-min: 1.01;
  --hero-scale-max: 1.05;
}

.pit-page .hero-tile.is-fixed img {
  object-position: 62% center;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.google-reviews-embed {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 240, 229, 0.82));
}

.google-reviews-live {
  margin-top: 1rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 240, 229, 0.82));
}

.google-reviews-live-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
  flex-wrap: wrap;
}

.google-reviews-live-head h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #8f652c;
}

.google-reviews-live-note {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 118, 220, 0.38);
  color: #145dbd;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-reviews-live-track {
  height: 240px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.google-reviews-live-loading {
  margin: 0;
  color: var(--muted);
}

.google-review-item {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.55rem;
  height: 100%;
}

.google-review-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.google-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(206, 169, 106, 0.4);
  background: #f4ecdf;
  flex: 0 0 42px;
}

.google-review-avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.google-review-avatar-fallback {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: #7d5727;
  letter-spacing: 0.04em;
}

.google-review-stars {
  color: #cf9537;
  letter-spacing: 0.08em;
  font-size: 0.88rem;
}

.google-review-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
}

.google-review-meta {
  margin: 0;
  color: #7a5f39;
  font-size: 0.85rem;
}

.google-reviews-live-controls {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.google-reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.google-reviews-head h3 {
  font-size: 1.05rem;
  color: #91662d;
}

.google-map-frame {
  position: relative;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  border-radius: 10px;
}

.google-map-frame iframe {
  width: 100%;
  height: 390px;
  border: 0;
  display: block;
  filter: grayscale(0.08) saturate(0.92) contrast(0.98) brightness(1.03);
}

.map-radius-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.map-radius-circle {
  position: relative;
  width: 372px;
  height: 372px;
  border-radius: 999px;
  border: 2px solid rgba(220, 180, 106, 0.8);
  background: radial-gradient(circle, rgba(220, 180, 106, 0.18) 0%, rgba(220, 180, 106, 0.08) 42%, rgba(220, 180, 106, 0.02) 70%, rgba(220, 180, 106, 0) 100%);
  box-shadow: 0 0 0 1px rgba(220, 180, 106, 0.15), 0 0 28px rgba(220, 180, 106, 0.2);
}

.map-radius-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: #f0ca84;
  box-shadow: 0 0 0 4px rgba(240, 202, 132, 0.3);
}

.map-radius-label {
  position: absolute;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #845c28;
  background: rgba(255, 251, 244, 0.9);
  border: 1px solid rgba(220, 180, 106, 0.45);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  white-space: nowrap;
}

@media (max-width: 660px) {
  .map-radius-circle {
    width: 300px;
    height: 300px;
  }

  .pit-page .pit-story-prose p {
    font-size: 0.97rem;
    line-height: 1.68;
  }

  .pit-page .pit-story-intro {
    font-size: 1.13rem;
  }
}

.regional-range {
  margin-top: 0.95rem;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 240, 229, 0.8));
}

.regional-range h3 {
  font-size: 1.04rem;
  margin-bottom: 0.55rem;
  color: #91662d;
}

.regional-range p {
  margin: 0 0 0.55rem;
  color: var(--muted);
}

.regional-range p:last-child {
  margin-bottom: 0;
}

blockquote {
  margin: 0;
  color: #5e4d37;
}

blockquote cite {
  display: block;
  margin-top: 0.8rem;
  color: var(--gold);
  font-style: normal;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-list details {
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.8rem 1rem;
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-right: 0.1rem;
  cursor: pointer;
  color: #5c4a35;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid rgba(220, 180, 106, 0.95);
  border-bottom: 2px solid rgba(220, 180, 106, 0.95);
  transform: rotate(45deg);
  transition: transform 220ms ease;
  flex: 0 0 auto;
  margin-top: -0.12rem;
}

.faq-list details[open] summary::after {
  transform: rotate(225deg);
  margin-top: 0.12rem;
}

.faq-list p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.contact {
  padding: 4.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
}

.contact-list a {
  color: var(--gold-strong);
}

.contact-whatsapp-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.55);
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.26), rgba(19, 150, 69, 0.22));
  color: #eaffef;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contact-whatsapp-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 245, 128, 0.85);
  box-shadow: 0 12px 24px rgba(16, 126, 58, 0.3);
}

.whatsapp-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 230, 0.88));
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  font-size: 0.84rem;
  color: #5f4c36;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(228, 187, 102, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  padding: 0.74rem 0.8rem;
  font: inherit;
}

.contact-form select {
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid rgba(228, 187, 102, 0.7);
}

.contact-success-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.contact-success-modal[hidden] {
  display: none;
}

.contact-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 24, 9, 0.52);
  backdrop-filter: blur(3px);
}

.contact-success-card {
  position: relative;
  z-index: 1;
  width: min(540px, 94vw);
  padding: 1.4rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(198, 151, 72, 0.42);
  box-shadow: 0 24px 46px rgba(51, 34, 12, 0.3);
  background: linear-gradient(170deg, rgba(255, 254, 251, 0.98), rgba(246, 238, 223, 0.95));
}

.contact-success-eyebrow {
  margin: 0;
  color: var(--gold-strong);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.contact-success-card h3 {
  margin: 0.3rem 0 0.75rem;
}

.contact-success-card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.contact-success-card .btn {
  margin-top: 0.4rem;
}

.site-footer {
  border-top: 1px solid var(--line-soft);
  padding: 1.3rem 0;
  background: #f3ebdf;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #726047;
  font-size: 0.86rem;
}

.footer-wrap div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-stealth-link {
  opacity: 0.38;
  letter-spacing: 0.04em;
}

.footer-stealth-link:hover {
  opacity: 0.72;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-wrap {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 83px;
    flex-direction: column;
    align-items: center;
    background: rgba(251, 246, 237, 0.98);
    border-bottom: 1px solid var(--line-soft);
    padding: 0.85rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .main-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-cta {
    display: none;
  }

  .about-grid,
  .two-col-copy,
  .video-cards,
  .quotes,
  .contact-grid,
  .setup-grid {
    grid-template-columns: 1fr;
  }

  .btn-greek-flag {
    width: 100%;
    max-width: 360px;
  }

  .hero {
    padding-top: 0.4rem;
  }

  .hero-grid {
    min-height: 560px;
  }

  .hero-content {
    padding-top: 1.8rem;
    padding-inline: 1.1rem;
    max-width: 820px;
    background: linear-gradient(
      90deg,
      rgba(255, 252, 246, 0.94) 0%,
      rgba(255, 248, 239, 0.86) 60%,
      rgba(255, 246, 234, 0.56) 80%,
      rgba(255, 246, 234, 0.3) 92%,
      rgba(255, 246, 234, 0.1) 100%
    );
    border-radius: 16px;
  }


  .google-map-frame iframe {
    height: 320px;
  }
  .hero-visual {
    min-height: 100%;
  }

  .hero-visual img {
    object-position: 66% center;
    --hero-scale-min: 1.04;
    --hero-scale-max: 1.1;
  }

  .hero-fade-layer {
    object-position: center center;
  }

  .hero-fade-layer[src*="hero.jpg"] {
    object-position: center 18%;
  }

  .hero-tile.is-fixed img {
    object-position: 90% center;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    max-width: 100%;
  }

  .stat-item {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip-card {
    border-bottom: 1px solid var(--line-soft);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-page-grid,
  .youtube-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .video-slider {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }

  .profile-rotator {
    width: 180px;
    height: 180px;
    border-radius: 18px;
  }
}

@media (max-width: 760px) {
  .hero .hero-content-wrap.container {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
  }

  .hero-content-wrap {
    order: 2;
    position: relative;
    z-index: 3;
  }

  .hero-visual {
    order: 1;
    position: relative;
    inset: auto;
    min-height: 340px;
    height: 340px;
  }

  .hero-content {
    max-width: 100%;
    border-radius: 0;
  }

  .service-strip {
    display: none;
  }

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

  .hero-tile {
    display: none;
  }

  .hero-tile.is-fixed {
    display: block;
  }

  .hero-tile::after {
    border-left: 0;
  }

  .hero-visual img {
    object-position: 88% center;
    --hero-scale-min: 1.03;
    --hero-scale-max: 1.07;
  }

  .hero-fade-layer {
    object-position: center center;
    --hero-scale-min: 1.003;
    --hero-scale-max: 1.022;
  }

  .hero-fade-layer[src*="hero.jpg"] {
    object-position: 86% 0%;
    --hero-scale-min: 1;
    --hero-scale-max: 1.012;
  }

  .hero-tile img[src*="dieses6.png"] {
    object-position: 0% center !important;
    --hero-scale-min: 1;
    --hero-scale-max: 1.02;
  }

  .hero-tile img[src*="dieses3.png"] {
    object-position: 100% center !important;
  }

  .pit-page .hero-visual img {
    object-position: 62% center;
    --hero-scale-min: 1.01;
    --hero-scale-max: 1.05;
  }

  .greek-page .hero-visual img {
    object-position: 100% center !important;
  }
}

@media (max-width: 660px) {
  .brand-title {
    font-size: 0.83rem;
  }

  .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-visual {
    min-height: 100%;
  }

  .hero-visual img {
    object-position: 88% center;
    --hero-scale-min: 1.03;
    --hero-scale-max: 1.07;
  }

  .hero-fade-layer {
    object-position: center center;
    --hero-scale-min: 1.003;
    --hero-scale-max: 1.02;
  }

  .hero-fade-layer[src*="hero.jpg"] {
    object-position: 90% 0%;
    --hero-scale-min: 1;
    --hero-scale-max: 1.01;
  }

  .hero-tile img[src*="dieses6.png"] {
    object-position: 0% center !important;
    --hero-scale-min: 1;
    --hero-scale-max: 1.02;
  }

  .hero-tile img[src*="dieses3.png"] {
    object-position: 100% center !important;
  }

  .pit-page .hero-visual img {
    object-position: 64% center;
    --hero-scale-min: 1.01;
    --hero-scale-max: 1.04;
  }

  .greek-page .hero-visual img {
    object-position: 100% center !important;
  }

  .hero-tile.is-fixed img {
    object-position: 95% center;
  }

  .hero-content {
    padding-top: 1.25rem;
    padding-bottom: 1.2rem;
    padding-inline: 1rem;
    max-width: 100%;
    background: linear-gradient(
      90deg,
      rgba(255, 252, 246, 0.92) 0%,
      rgba(255, 248, 238, 0.82) 56%,
      rgba(255, 246, 234, 0.5) 78%,
      rgba(255, 246, 234, 0.28) 90%,
      rgba(255, 246, 234, 0.1) 100%
    );
    border-radius: 0;
  }

  .strip-grid,
  .gallery-page-grid,
  .youtube-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about .gallery-grid {
    display: none;
  }

  .strip-card {
    border-right: 0;
  }

  .main-nav {
    gap: 1rem;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(70px, 1fr));
    gap: 0.55rem;
  }

  .stat-item {
    padding-right: 0.45rem;
  }

  .stat-item strong {
    font-size: 1.35rem;
  }

  .stat-item .icon {
    font-size: 1.1rem;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .profile-rotator {
    margin-inline: 0;
    width: calc(100% - 0.4rem);
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .greek-cta-slideshow {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-right: 0;
  }

  .profile-rotator--dj img {
    object-position: 98% 20%;
  }

  .hero-actions .btn {
    padding-inline: 1rem;
    font-size: 0.66rem;
  }

  .prose-flow p {
    line-height: 1.66;
    font-size: 0.97rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.page-transition-enabled {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-visual img,
  .hero [data-hero-shimmer] .char {
    animation: none;
  }
}
