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

:root {
  --bg: #0d0d10;
  --surface: #13131a;
  --gold: #c9a96e;
  --gold-dim: #8a6f48;
  --text: #e8e2d9;
  --muted: #7a7469;
  --line: rgba(201, 169, 110, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Noise overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── Nav ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}

nav.scrolled {
  background: rgba(13, 13, 16, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Radial glow */
#hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
}

/* Orbiting ring */
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateRing 30s linear infinite;
}

.ring-1 {
  width: 520px;
  height: 520px;
  animation-duration: 40s;
}

.ring-2 {
  width: 760px;
  height: 760px;
  animation-duration: 60s;
  animation-direction: reverse;
}

.ring-3 {
  width: 1000px;
  height: 1000px;
  animation-duration: 80s;
}

@keyframes rotateRing {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Dot on ring */
.ring::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.6;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gold-dim);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(0.7);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Section Base ── */
section {
  padding: 7rem 2rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold-dim);
  margin-bottom: 2.5rem;
}

/* ── About ── */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 320px;
}

.photo-wrap img,
.photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.photo-placeholder {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.photo-placeholder svg {
  opacity: 0.3;
}

/* Golden corner accents */
.photo-wrap::before,
.photo-wrap::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.6;
}

.photo-wrap::before {
  top: -10px;
  left: -10px;
  border-width: 1px 0 0 1px;
}

.photo-wrap::after {
  bottom: -10px;
  right: -10px;
  border-width: 0 1px 1px 0;
}

.about-text p {
  color: #b5afa7;
  margin-bottom: 1.2rem;
}

.about-text p:first-of-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

/* ── Services ── */
#services {
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 3rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
  transition: border-top-color 0.3s;
}

.service-card:hover {
  border-top-color: var(--gold);
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--line);
  display: block;
  margin-bottom: 0.8rem;
  transition: color 0.3s;
}

.service-card:hover .service-num {
  color: rgba(201, 169, 110, 0.25);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Kontaktformular ── */
.contact-form {
  max-width: 620px;
  margin-top: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  margin-top: 1.2rem;
}

.form-submit .btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.8rem;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--line);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Contact ── */
#contact {
  background: var(--surface);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-inner h2 {
  margin-bottom: 0.5rem;
}

.contact-inner p {
  color: var(--muted);
  margin-bottom: 2rem;
}

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

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: #dfc089;
  border-color: #dfc089;
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Footer ── */
footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

footer a {
  color: var(--muted);
  text-decoration: underline;
}

footer a:hover {
  color: var(--gold);
}

/* ── Calendly Consent ── */
.calendly-consent {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 3rem 2rem;
}

.calendly-consent .icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.consent-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
}

.consent-text strong {
  color: var(--text);
}

.consent-hint {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 380px;
}

.consent-hint a {
  color: var(--gold-dim);
  text-decoration: underline;
}

.consent-hint a:hover {
  color: var(--gold);
}

#calendly-iframe-wrap iframe {
  width: 100%;
  min-height: 650px;
  border: none;
  display: block;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  #about .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .photo-wrap {
    max-width: 260px;
    margin: 0 auto;
  }

  section {
    padding: 5rem 1.5rem;
  }
}