@import url("fontawesome-all.min.css");

/* ════════════════════════════════════════════
   Design Tokens
════════════════════════════════════════════ */
:root {
  --bg:            #07090f;
  --bg-1:          #0c0f1a;
  --bg-2:          #111626;
  --glass:         rgba(255, 255, 255, 0.04);
  --glass-mid:     rgba(255, 255, 255, 0.07);
  --stroke:        rgba(255, 255, 255, 0.07);
  --stroke-gold:   rgba(215, 152, 48, 0.28);
  --gold:          #d7982a;
  --gold-light:    #f0bc68;
  --gold-dim:      rgba(215, 152, 48, 0.12);
  --text:          #e8ecf6;
  --muted:         rgba(232, 236, 246, 0.6);
  --muted-2:       rgba(232, 236, 246, 0.38);
  --font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-glow:   0 0 80px rgba(215, 152, 48, 0.1);
  --shadow-card:   0 24px 56px rgba(0, 0, 0, 0.52);
  --shadow-soft:   0 8px 28px rgba(0, 0, 0, 0.32);
  --radius-xl:     32px;
  --radius-lg:     22px;
  --radius-md:     14px;
  --radius-sm:     9px;
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --container:     min(1180px, 92vw);
}

/* ════════════════════════════════════════════
   Reset & Base
════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 55% at 92% 0%, rgba(215, 152, 48, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 8% 18%, rgba(215, 152, 48, 0.055) 0%, transparent 55%);
  line-height: 1.65;
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

a:hover,
a:focus {
  color: var(--gold-light);
}

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

/* ── Text selection ── */
::selection {
  background: rgba(215, 152, 48, 0.22);
  color: var(--text);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(215, 152, 48, 0.3);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(215, 152, 48, 0.55); }

/* ── Focus rings ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

p {
  color: var(--muted);
  line-height: 1.75;
}

p + p { margin-top: 0.9rem; }

em {
  font-style: italic;
  color: var(--gold-light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   Eyebrow
════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  opacity: 0.9;
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   Buttons
════════════════════════════════════════════ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  padding: 0.9rem 2rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 240ms var(--ease-out),
    box-shadow 240ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
  white-space: nowrap;
}

.button .icon { font-size: 1rem; }

.button--primary {
  background: linear-gradient(135deg, #a86820 0%, #d7982a 48%, #f0bc68 100%);
  color: #1c0e02;
  box-shadow: 0 8px 32px rgba(215, 152, 48, 0.38);
}

.button--primary:hover,
.button--primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(215, 152, 48, 0.52);
  color: #1c0e02;
}

.button--ghost {
  background: transparent;
  border-color: rgba(215, 152, 48, 0.38);
  color: var(--text);
}

.button--ghost:hover,
.button--ghost:focus {
  border-color: rgba(215, 152, 48, 0.72);
  background: rgba(215, 152, 48, 0.09);
  color: var(--text);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════
   Scroll Reveal
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════════
   Site Header
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: hidden;
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  background: linear-gradient(
    105deg,
    rgba(14, 9, 3, 0.97) 0%,
    rgba(38, 25, 8, 0.95) 60%,
    rgba(22, 14, 5, 0.97) 100%
  );
  border-bottom: 1px solid rgba(215, 152, 48, 0.16);
  transform: translateY(0);
  transition: transform 380ms var(--ease-out), opacity 300ms ease, box-shadow 300ms ease, padding 300ms var(--ease-out);
}

.site-header.header--hidden {
  transform: translateY(-110%);
  opacity: 0;
  box-shadow: none;
  pointer-events: none;
}

/* Ghost-Logo im Header-Hintergrund */
.header__bg-logo {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.header__bg-logo img {
  width: 110px;
  opacity: 0.045;
  filter: brightness(4) saturate(0);
  display: block;
}

body.scrolled .site-header {
  box-shadow: 0 4px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(215, 152, 48, 0.08);
}

.site-header .container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  padding: 1.1rem 0;
  transition: padding 300ms var(--ease-out);
}

body.scrolled .site-header .container {
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 236, 246, 0.9);
  flex-shrink: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(215, 152, 48, 0.25);
  padding: 6px;
  background: rgba(215, 152, 48, 0.055);
  transition: border-color 200ms ease;
}

.brand:hover img {
  border-color: rgba(215, 152, 48, 0.5);
}

/* ── Text-Navigation ── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  margin-right: 0.5rem;
}

.primary-nav a {
  position: relative;
  display: inline-block;
  padding: 0.45rem 1.05rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 236, 246, 0.6);
  border-radius: 6px;
  transition: color 200ms ease, background 200ms ease;
  white-space: nowrap;
}

/* Underline-Indikator */
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.05rem;
  right: 1.05rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 280ms var(--ease-out);
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.primary-nav a:hover::after,
.primary-nav a:focus::after {
  transform: scaleX(1);
}

.primary-nav a[aria-current="page"] {
  color: var(--gold-light);
}

.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* Trennpunkt zwischen Links */
.primary-nav a + a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(215, 152, 48, 0.18);
}

.nav-icon { font-size: 1.15rem; }
.nav-toggle { display: none; }
body.nav-open { overflow: hidden; }

/* ════════════════════════════════════════════
   Hero
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  place-items: center;
  padding: 7rem 0 5.5rem;
  overflow: hidden;
}

.sub-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sub-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.38);
  transform: scale(1.04);
  transition: transform 9s ease;
}

body.loaded .sub-hero__media img {
  transform: scale(1);
}

.hero__overlay,
.sub-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 9, 15, 0.95) 0%, rgba(12, 15, 26, 0.92) 100%),
    linear-gradient(0deg, rgba(7, 9, 15, 0.75) 0%, transparent 55%);
}

.hero__bg-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.hero__title-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.hero__title-logo img {
  width: 680px;
  max-width: 90vw;
  opacity: 0.28;
  filter: saturate(0.4) brightness(0.7);
  mix-blend-mode: luminosity;
  display: block;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero__bg-logo img {
  width: 700px;
  max-width: 80vw;
  opacity: 0.07;
  filter: brightness(4) saturate(0);
  display: block;
}

.page-bg-logo {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.page-bg-logo img {
  width: 700px;
  max-width: 80vw;
  opacity: 0.05;
  filter: brightness(4) saturate(0);
  display: block;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero__copy {
  animation: heroReveal 900ms var(--ease-out) both;
  animation-delay: 180ms;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__copy .eyebrow {
  margin-bottom: 1.1rem;
}

.hero__copy h1 {
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
}

.hero__copy h1 .hero__title-accent {
  display: block;
  font-style: normal;
  background: linear-gradient(
    100deg,
    var(--gold)       18%,
    var(--gold-light) 34%,
    #fff8e0           48%,
    var(--gold-light) 62%,
    var(--gold)       78%
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 6s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes goldShimmer {
  0%       { background-position: -100% center; }
  60%, 100% { background-position: 200% center; }
}

.hero__copy > p {
  font-size: 1.05rem;
  color: rgba(232, 236, 246, 0.72);
  max-width: 430px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.4rem;
  animation: heroReveal 900ms var(--ease-out) both;
  animation-delay: 380ms;
}

.hero__portrait {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(215, 152, 48, 0.16);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  animation:
    heroReveal 900ms var(--ease-out) both 320ms,
    portraitAura 5s ease-in-out 2.5s infinite;
}

@keyframes portraitAura {
  0%, 100% {
    box-shadow: var(--shadow-card),
                0 0 0 1px rgba(215, 152, 48, 0.16),
                0 0 40px rgba(215, 152, 48, 0.07);
  }
  50% {
    box-shadow: var(--shadow-card),
                0 0 0 1px rgba(215, 152, 48, 0.42),
                0 0 80px rgba(215, 152, 48, 0.22),
                0 0 120px rgba(215, 152, 48, 0.07);
  }
}

.hero__portrait::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(215, 152, 48, 0.25) 0%, transparent 55%);
  z-index: -1;
}

.hero__portrait img {
  border-radius: calc(var(--radius-xl) - 9px);
  width: 100%;
  object-fit: contain;
  padding: 1.5rem;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: heroReveal 1s ease both;
  animation-delay: 900ms;
}

.hero__scroll-hint span {
  display: block;
  width: 1.5px;
  height: 44px;
  background: linear-gradient(180deg, rgba(215, 152, 48, 0.8), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(0.55); opacity: 0.25; }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   Stats Bar
════════════════════════════════════════════ */
.stats {
  position: relative;
  z-index: 2;
  margin-top: -1px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(24, 17, 8, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(215, 152, 48, 0.18);
  border-bottom: 1px solid rgba(215, 152, 48, 0.12);
}

.stat-item {
  padding: 2.4rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(215, 152, 48, 0.1);
}

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

.stat-item__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-2);
}

/* ════════════════════════════════════════════
   Section Spacing
════════════════════════════════════════════ */
.about,
.services,
.gallery,
.testimonials,
.cta,
.contact,
.review-details {
  padding: 7rem 0;
}

/* ════════════════════════════════════════════
   About
════════════════════════════════════════════ */
.about__layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  background: rgba(7, 9, 15, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about__portrait {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(215, 152, 48, 0.16);
  box-shadow: var(--shadow-card);
}

.about__portrait img {
  border-radius: calc(var(--radius-xl) - 6px);
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about__content h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 2rem;
}

.about__content p { font-size: 0.975rem; }

.about__highlights {
  display: grid;
  gap: 1.15rem;
}

.highlight-card {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 1.3rem;
  align-items: center;
  background: var(--glass);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 240ms ease, background 240ms ease;
}

.highlight-card:hover {
  border-color: rgba(215, 152, 48, 0.22);
  background: rgba(215, 152, 48, 0.035);
}

.highlight-card img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.highlight-card p { font-size: 0.88rem; }

/* ════════════════════════════════════════════
   Services
════════════════════════════════════════════ */
.services__header {
  margin-bottom: 2.8rem;
}

.services__header h2 {
  margin-top: 0;
}

.services__more {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}

.service-card {
  position: relative;
  background: rgba(12, 15, 26, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  transition:
    transform 280ms var(--ease-out),
    box-shadow 280ms ease,
    border-color 280ms ease;
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.52);
  border-color: rgba(215, 152, 48, 0.28);
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.88);
  transition: transform 500ms var(--ease-out), filter 400ms ease;
  display: block;
}

.service-card:hover img {
  transform: scale(1.09);
  filter: brightness(0.7) saturate(0.78);
}

.service-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3rem 1.5rem 1.5rem;
  background: linear-gradient(0deg, rgba(7, 9, 15, 0.96) 50%, transparent);
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.service-card__content h3 {
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.35rem;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.7rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 240ms ease, transform 240ms var(--ease-out);
}

.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-card__content p {
  font-size: 0.82rem;
  color: var(--muted);
}

.service-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid rgba(215, 152, 48, 0.38);
  border-radius: 999px;
  padding: 0.18em 0.65em;
  margin-top: 0.4rem;
}

/* ════════════════════════════════════════════
   Gallery
════════════════════════════════════════════ */
.gallery__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.gallery__intro {
  display: flex;
  flex-direction: column;
}

.gallery__header .eyebrow {
  margin-bottom: 0.55rem;
}

.gallery__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0;
}

.gallery__controls {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.gallery__button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(215, 152, 48, 0.28);
  background: rgba(215, 152, 48, 0.07);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms ease;
}

.gallery__button:hover,
.gallery__button:focus {
  background: rgba(215, 152, 48, 0.2);
  border-color: rgba(215, 152, 48, 0.6);
  color: var(--gold-light);
  transform: scale(1.08);
}

.gallery__button:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}

.gallery__viewport {
  overflow: hidden;
}

.gallery__track {
  display: flex;
  gap: clamp(0.9rem, 1.5vw, 1.4rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  padding: 0 1rem 1.6rem;
  margin: 0 -1rem;
  scroll-padding: 1rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track.is-dragging { cursor: grabbing; }

.gallery__item {
  flex: 0 0 clamp(260px, 30vw, 360px);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-1);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
  position: relative;
  aspect-ratio: 4 / 3;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
  transition: transform 420ms var(--ease-out), filter 400ms ease;
}

.gallery__item:hover img {
  transform: scale(1.07);
  filter: brightness(0.72) saturate(0.78);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 9, 15, 0.82) 0%, transparent 58%);
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.gallery__item:hover::after,
.gallery__item:focus-within::after { opacity: 1; }

.gallery__item:hover,
.gallery__item:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.52);
  border-color: rgba(215, 152, 48, 0.18);
}

.gallery__caption {
  position: absolute;
  inset: auto 1.2rem 1rem 1.2rem;
  font-family: var(--font-body);
  color: rgba(232, 236, 246, 0.92);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.gallery__item:hover .gallery__caption,
.gallery__item:focus-within .gallery__caption {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════
   Testimonials
════════════════════════════════════════════ */
.testimonials__header {
  margin-bottom: 3rem;
}

.testimonials__header h2 {
  margin-top: 0;
}

.testimonial-grid {
  display: grid;
  gap: 2rem;
}

.testimonial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  background: rgba(7, 9, 15, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
  transition: border-color 300ms ease;
}

.testimonial:hover {
  border-color: rgba(215, 152, 48, 0.2);
}

.testimonial__quote {
  position: absolute;
  top: 1.2rem;
  left: 2rem;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.testimonial__content {
  padding: 2.8rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.testimonial__content > p {
  font-size: 0.95rem;
  line-height: 1.78;
  padding-top: 2.2rem;
}

.testimonial__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.testimonial__author {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.testimonial__media {
  overflow: hidden;
}

.testimonial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.82);
  transition: transform 500ms var(--ease-out);
}

.testimonial:hover .testimonial__media img {
  transform: scale(1.04);
}

/* ════════════════════════════════════════════
   CTA
════════════════════════════════════════════ */
.cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 8rem 0;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(215, 152, 48, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(215, 152, 48, 0.04) 100%);
}

.cta__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 64px,
    rgba(215, 152, 48, 0.025) 64px,
    rgba(215, 152, 48, 0.025) 65px
  );
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta .eyebrow {
  justify-content: center;
}

.cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  max-width: 720px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--text) 45%, rgba(232, 236, 246, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.8rem;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   Contact
════════════════════════════════════════════ */
.contact__layout {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact__content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact__info-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.85rem;
  transition: color 200ms ease;
}

.contact__info-link .icon {
  color: var(--gold);
  font-size: 0.95rem;
  width: 1.2em;
  flex-shrink: 0;
}

.contact__info-link:hover { color: var(--text); }

.contact__links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.contact__links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 152, 48, 0.28);
  color: var(--muted);
  font-size: 1rem;
  transition: all 220ms ease;
}

.contact__links a:hover,
.contact__links a:focus {
  background: rgba(215, 152, 48, 0.1);
  border-color: rgba(215, 152, 48, 0.58);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.contact__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.contact__media img {
  width: 200px;
  max-width: 100%;
  opacity: 0.9;
  filter: brightness(1.05) contrast(0.95);
}

/* ════════════════════════════════════════════
   Sub-hero (impressum, datenschutz pages)
════════════════════════════════════════════ */
.sub-hero {
  position: relative;
  padding: 6.5rem 0 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%, rgba(215, 152, 48, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, rgba(7,9,15,0.6) 0%, transparent 100%);
}

.sub-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.sub-hero__content p { font-size: 1rem; }

/* ════════════════════════════════════════════
   Review Details (generic.html)
════════════════════════════════════════════ */
.review-details h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin-bottom: 2.6rem;
}

.review-details__grid { display: grid; gap: 2.2rem; }

.review-card {
  display: grid;
  gap: 1.8rem;
  background: var(--glass);
  border-radius: var(--radius-xl);
  padding: 2.4rem;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-soft);
}

.review-card__media {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.review-card__media img {
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.review-card__author {
  margin-top: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(215, 152, 48, 0.85);
}

/* ════════════════════════════════════════════
   Footer
════════════════════════════════════════════ */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(7, 9, 15, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.footer__layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(215, 152, 48, 0.24);
  padding: 6px;
  background: rgba(215, 152, 48, 0.055);
}

.footer__brand p {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.84rem;
  color: var(--muted-2);
  transition: color 200ms ease;
}

.footer__links a:hover { color: var(--gold-light); }

.footer__legal {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 236, 246, 0.32);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.5rem;
}

/* ════════════════════════════════════════════
   Responsive — 1100px
════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .about__layout {
    grid-template-columns: 180px minmax(0, 1fr);
  }

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

  .highlight-card {
    grid-template-columns: 140px 1fr;
  }

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

  .testimonial__media {
    height: 260px;
  }

  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════════
   Responsive — 900px
════════════════════════════════════════════ */
/* ════════════════════════════════════════════
   Mobile Nav Toggle
════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 200ms ease, border-color 200ms ease;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms ease;
  transform-origin: center;
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Nav panel */
@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Staggered link entrance */
@keyframes navItemIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Backdrop fade */
@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 15, 0.5);
  z-index: 48;
  animation: backdropIn 280ms ease both;
  pointer-events: none;
}

body.nav-open .primary-nav {
  display: flex;
  animation: navSlideDown 300ms var(--ease-out) both;
}

body.nav-open .primary-nav a {
  animation: navItemIn 320ms var(--ease-out) both;
}
body.nav-open .primary-nav a:nth-child(1) { animation-delay: 60ms; }
body.nav-open .primary-nav a:nth-child(2) { animation-delay: 105ms; }
body.nav-open .primary-nav a:nth-child(3) { animation-delay: 150ms; }
body.nav-open .primary-nav a:nth-child(4) { animation-delay: 195ms; }

@media (max-width: 900px) {
  .site-header .container {
    justify-content: flex-start;
    padding: 1rem 0;
  }

  .brand { margin-right: auto; }
  .nav-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border-color: rgba(215, 152, 48, 0.22);
    background: rgba(215, 152, 48, 0.06);
  }

  body.nav-open .nav-toggle {
    background: rgba(215, 152, 48, 0.14);
    border-color: rgba(215, 152, 48, 0.45);
  }

  .site-header {
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(14, 9, 3, 0.98);
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem;
    background: rgba(11, 14, 23, 0.97);
    backdrop-filter: blur(28px) saturate(1.5);
    -webkit-backdrop-filter: blur(28px) saturate(1.5);
    border: 1px solid rgba(215, 152, 48, 0.18);
    border-radius: var(--radius-lg);
    box-shadow:
      0 28px 70px rgba(0, 0, 0, 0.65),
      0 0 0 1px rgba(215, 152, 48, 0.06) inset;
    z-index: 100;
  }

  .primary-nav a {
    padding: 0.95rem 1.2rem;
    font-size: 0.83rem;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    color: rgba(232, 236, 246, 0.72);
    border-bottom: none;
    transition: color 180ms ease, background 180ms ease, padding-left 180ms ease;
  }

  .primary-nav a::after { display: none; }

  .primary-nav a + a {
    border-top: 1px solid rgba(215, 152, 48, 0.07);
  }

  .primary-nav a + a::before { display: none; }

  .primary-nav a:hover,
  .primary-nav a:focus {
    color: rgba(232, 236, 246, 0.96);
    background: rgba(215, 152, 48, 0.07);
    padding-left: 1.5rem;
  }

  .primary-nav a[aria-current="page"] {
    color: var(--gold-light);
    background: rgba(215, 152, 48, 0.09);
  }

  .header__bg-logo { right: 2%; }
  .header__bg-logo img { width: 80px; }

  .hero__bg-logo img { width: 380px; max-width: 85vw; }


  .gallery__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .gallery__controls {
    align-self: stretch;
    justify-content: flex-end;
  }

  .gallery__track {
    margin: 0;
    padding: 0 0 1.4rem;
  }

  .gallery__item {
    flex-basis: clamp(240px, 50vw, 320px);
  }

  .hero__scroll-hint { display: none; }
}

/* ════════════════════════════════════════════
   Responsive — 720px
════════════════════════════════════════════ */
@media (max-width: 720px) {
  .gallery__track {
    padding: 0 1.4rem 1.6rem;
    margin: 0 -1.4rem;
    scroll-padding: 1.4rem;
  }

  .gallery__item {
    flex: 0 0 calc(100vw - 3rem);
    max-width: 420px;
    scroll-snap-align: start;
  }

  .contact__layout { padding: 2.4rem; }
}

/* ════════════════════════════════════════════
   Responsive — 640px
════════════════════════════════════════════ */
@media (max-width: 640px) {
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.1rem); }

  .about,
  .services,
  .gallery,
  .testimonials,
  .cta,
  .contact,
  .review-details {
    padding: 4rem 0;
  }

  .cta { padding: 4.5rem 0; }
  .hero { padding: 4.5rem 0 3.5rem; }

  /* Hero */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero__title-logo img {
    width: 90vw;
  }

  /* Section headers zentrieren */
  .services__header,
  .gallery__header {
    text-align: center;
    align-items: center;
  }

  .gallery__header {
    align-items: center;
  }

  /* Service cards */
  .service-grid { grid-template-columns: 1fr; }

  .service-card img { height: 220px; }

  .service-card__arrow {
    opacity: 1;
    transform: none;
  }

  /* About */
  .about__layout {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .about__portrait {
    max-width: 200px;
    margin: 0 auto;
  }

  .about__content {
    text-align: center;
  }

  /* Stats */
  .stats__grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 1.4rem 0.5rem; }
  .stat-item__value { font-size: clamp(1.4rem, 5vw, 2rem); }
  .stat-item__label { font-size: 0.65rem; }

  /* Testimonials */
  .testimonial__content { padding: 1.8rem 1.4rem; }
  .testimonial__media { height: 200px; }

  /* Gallery */
  .gallery__track {
    padding: 0 1.2rem 1.4rem;
    margin: 0 -1.2rem;
    scroll-padding: 1.2rem;
  }

  .gallery__item {
    flex: 0 0 calc(100vw - 2.6rem);
    max-width: 380px;
  }

  .gallery__controls {
    align-self: center;
    justify-content: center;
    width: 100%;
  }

  /* Contact */
  .contact__layout {
    padding: 1.8rem;
    text-align: center;
  }

  .contact__media { display: none; }

  .contact__info-link {
    justify-content: center;
  }

  .contact__links {
    justify-content: center;
  }

  /* Footer */
  .footer__layout {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .highlight-card { grid-template-columns: 1fr; }

  .cta h2 {
    -webkit-text-fill-color: unset;
    background: none;
    color: var(--text);
  }
}

/* ════════════════════════════════════════════
   Responsive — 420px (kleine Phones)
════════════════════════════════════════════ */
@media (max-width: 420px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(215, 152, 48, 0.1);
    border-right: none;
  }

  .about__layout { padding: 1.5rem; }

  .service-card img { height: 200px; }

  .contact__layout { padding: 1.4rem; }

  .hero__copy h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
}

/* ════════════════════════════════════════════
   Reduced Motion
════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ════════════════════════════════════════════
   Premium Effects
════════════════════════════════════════════ */

/* ── Film Grain Overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.036;
  mix-blend-mode: overlay;
}

/* ── Background Orbs (injected via JS) ── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(215, 152, 48, 0.13) 0%, transparent 70%);
  filter: blur(90px);
  will-change: transform;
}

.bg-orb--1 {
  width: 700px;
  height: 700px;
  top: -15%;
  right: -10%;
  animation: orbDrift1 14s ease-in-out infinite alternate;
}

.bg-orb--2 {
  width: 550px;
  height: 550px;
  bottom: 15%;
  left: -10%;
  animation: orbDrift2 18s ease-in-out infinite alternate;
  opacity: 0.7;
}

.bg-orb--3 {
  width: 400px;
  height: 400px;
  top: 55%;
  right: 15%;
  animation: orbDrift3 22s ease-in-out infinite alternate;
  opacity: 0.5;
}

@keyframes orbDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes orbDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(35px, -25px) scale(1.08); }
}

@keyframes orbDrift3 {
  from { transform: translate(0, 0) scale(0.95); }
  to   { transform: translate(-20px, -35px) scale(1.05); }
}

/* ── Marquee ── */
.marquee {
  overflow: hidden;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(215, 152, 48, 0.1);
  border-bottom: 1px solid rgba(215, 152, 48, 0.1);
  background: rgba(7, 9, 15, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 1;
}

.marquee__inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee__inner:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee__item {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(215, 152, 48, 0.45);
  white-space: nowrap;
  padding: 0 1.8rem;
}

.marquee__dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(215, 152, 48, 0.35);
  flex-shrink: 0;
}

/* ── Button Shimmer on Hover ── */
.button--primary {
  position: relative;
  overflow: hidden;
}

.button--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: skewX(-18deg);
  transition: none;
  pointer-events: none;
}

.button--primary:hover::before {
  animation: btnShimmer 0.55s ease forwards;
}

@keyframes btnShimmer {
  to { left: 160%; }
}

/* ── CTA Animated Rays ── */
.cta__bg::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent        0deg,
    rgba(215,152,48,0.025) 8deg,
    transparent       16deg,
    transparent      180deg,
    rgba(215,152,48,0.025) 188deg,
    transparent       196deg
  );
  animation: raysRotate 24s linear infinite;
  pointer-events: none;
}

@keyframes raysRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Animated h2 Gold-Line ── */
.services__header h2::after,
.about__content h2::after,
.testimonials__header h2::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 0.9rem;
  border-radius: 1px;
  transition: width 900ms var(--ease-out);
  transition-delay: 0.3s;
}

.is-visible .services__header h2::after,
.is-visible .about__content h2::after,
.is-visible .testimonials__header h2::after {
  width: 72px;
}

/* ── 3D Tilt cards: disable CSS hover while tilting ── */
.service-card.is-tilting {
  transition: none;
}

/* ── Scroll hint pulse ── */
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50%       { transform: scaleY(0.45); opacity: 0.2; }
}

/* ── Section divider lines ── */
.about,
.services,
.testimonials,
.contact {
  position: relative;
}

.about::before,
.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(215, 152, 48, 0.3), transparent);
}

.highlight-card {
  transition: border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.highlight-card:hover {
  border-color: rgba(215, 152, 48, 0.3);
  box-shadow: 0 0 0 1px rgba(215, 152, 48, 0.08), var(--shadow-soft);
}

/* ── Testimonial quote mark pulse ── */
.testimonial__quote {
  animation: quotePulse 8s ease-in-out infinite;
}

@keyframes quotePulse {
  0%, 100% { opacity: 0.10; }
  50%       { opacity: 0.16; }
}


/* ════════════════════════════════════════════
   Floating WhatsApp Button
════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 0.72rem 1.25rem 0.72rem 1rem;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38), 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 240ms var(--ease-out), box-shadow 240ms ease, color 0ms;
  white-space: nowrap;
  text-decoration: none;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.52), 0 4px 14px rgba(0,0,0,0.22);
}

.whatsapp-float .fab { font-size: 1.25rem; line-height: 1; }

@media (max-width: 640px) {
  .whatsapp-float__label { display: none; }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .whatsapp-float .fab { font-size: 1.45rem; }
}

/* ════════════════════════════════════════════
   Back-to-Top Button
════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 1.8rem;
  left: 1.8rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(215, 152, 48, 0.08);
  border: 1px solid rgba(215, 152, 48, 0.32);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 300ms ease, transform 300ms ease, background 200ms ease, border-color 200ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(215, 152, 48, 0.18);
  border-color: rgba(215, 152, 48, 0.62);
  transform: translateY(-2px);
}

