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

:root {
  --c-bg: #0a0a0c;
  --c-ring: rgba(255,255,255,0.15);
  --c-text: #f0ece4;
  --c-sub: rgba(240,236,228,0.55);
  --orbital-size: 520px;
  --orbital-half: 260px;
  --orbit-radius: 210px;
  --btn-size: 72px;
  --btn-half: 36px;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--c-bg);
  font-family: 'DM Sans', sans-serif;
}

.bg {
  position: fixed;
  inset: 0;
  background: url('background.jpeg') center/cover no-repeat;
  filter: brightness(0.2);
  z-index: 0;
}

.scene {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.orbital {
  position: relative;
  width: var(--orbital-size);
  height: var(--orbital-size);
  animation: scaleIn 0.7s cubic-bezier(.34,1.3,.64,1) both;
}

.orbital::before {
  content: '';
  position: absolute;
  inset: calc(var(--orbital-half) - var(--orbit-radius) - var(--btn-half));
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.13);
  pointer-events: none;
  animation: breathe 3.5s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.5; box-shadow: 0 0 0px rgba(255,255,255,0); }
  50% { transform: scale(1.025); opacity: 1; box-shadow: 0 0 18px rgba(255,255,255,0.07); }
}

.center-circle {
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--c-ring);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 20px 80px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  background: radial-gradient(ellipse at 40% 35%, #1c1c20 0%, #0d0d0f 100%);
}

.center-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at var(--paint-x, 50%) var(--paint-y, 50%),
    var(--paint-color, transparent) 0%,
    var(--paint-color, transparent) 100%
  );
  clip-path: circle(0% at var(--paint-x, 50%) var(--paint-y, 50%));
  transition: clip-path 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s ease;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.center-circle.painted::after {
  clip-path: circle(75% at var(--paint-x, 50%) var(--paint-y, 50%));
}

.center-name,
.center-bottom {
  position: relative;
  z-index: 1;
}

.tooltip-phone {
  position: relative;
}

.tooltip-phone::after {
  content: 'Request via email';
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #000;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tooltip-phone:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.coming-soon {
  position: relative;
  z-index: 1;
  background: #000;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 6px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  margin-top: -40px;
}

.coming-soon.visible {
  opacity: 1;
  transform: translateY(0);
}

.j-first {
  font-family: 'Monsieur La Doulaise', cursive;
  font-size: 1.35em;
  padding: 0 3px 0 6px;
  line-height: 1;
  transform: translateY(0.05em) rotate(345deg);
}

.j-second {
  font-family: 'Monsieur La Doulaise', cursive;
  font-size: 0.7em;
  padding: 0 2px;
  line-height: 1;
  transform: translateY(-0.1em) rotate(345deg);
}

.j-final {
  font-size: 2.1rem;
}

.center-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 2.75rem;
  letter-spacing: 0.03em;
  color: var(--c-text);
  line-height: 1;
  animation: fadeUp 0.6s 0.3s ease both;
  margin-top: -3px;
}

.center-name span {
  display: inline-block;
}

.center-bottom {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.6s 0.45s ease both;
}

.center-icons a {
  color: var(--c-sub);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.center-icons a:hover { 
  color: var(--c-text);

}

.center-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.center-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sub);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s ease 0.25s;
  white-space: nowrap;
}

.center-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s ease 0s;
}

.center-bottom.hovered .center-icons {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s ease 0.2s;
}

.center-bottom.hovered .center-subtitle {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s ease 0s;
}

.icon-btn {
  position: absolute;
  width: var(--btn-size);
  height: var(--btn-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none; outline: none;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease, filter 0.25s ease;
}

.icon-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  pointer-events: none;
}

.icon-btn:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

.btn-1 {
  top: 434px;
  left: 224px;
  background: radial-gradient(circle at 35% 35%, #a5c98f, #52783a);
  box-shadow: 0 4px 20px rgba(82,120,58,0.45);
  animation: scaleIn 0.5s 0.10s ease both;
}
.btn-1:hover {
  box-shadow: 0 0 28px rgba(82,120,58,0.6);
}

.btn-2 {
  top: 355px;
  left: 60px;
  background: radial-gradient(circle at 35% 35%, #dac981, #8e7b2a);
  box-shadow: 0 4px 20px rgba(142,123,42,0.45);
  animation: scaleIn 0.5s 0.18s ease both;
}
.btn-2:hover {
  box-shadow: 0 0 28px rgba(142,123,42,0.6);
}

.btn-3 {
  top: 177px;
  left: 19px;
  background: radial-gradient(circle at 35% 35%, #eab26f, #9c6017);
  box-shadow: 0 4px 20px rgba(156,96,23,0.45);
  animation: scaleIn 0.5s 0.26s ease both;
}
.btn-3:hover {
  box-shadow: 0 0 28px rgba(156,96,23,0.6);
}

.btn-4 {
  top: 35px;
  left: 133px;
  background: radial-gradient(circle at 35% 35%, #d46663, #581a18);
  box-shadow: 0 4px 20px rgba(88,26,24,0.45);
  animation: scaleIn 0.5s 0.34s ease both;
}
.btn-4:hover {
  box-shadow: 0 0 28px rgba(88,26,24,0.6);
}

.btn-5 {
  top: 35px;
  left: 315px;
  background: radial-gradient(circle at 35% 35%, #b28ec3, #5b396c);
  box-shadow: 0 4px 20px rgba(91,57,108,0.45);
  animation: scaleIn 0.5s 0.42s ease both;
}
.btn-5:hover {
  box-shadow: 0 0 28px rgba(91,57,108,0.6);
}

.btn-6 {
  top: 177px;
  left: 429px;
  background: radial-gradient(circle at 35% 35%, #8e8ec9, #393977);
  box-shadow: 0 4px 20px rgba(57,57,119,0.45);
  animation: scaleIn 0.5s 0.50s ease both;
}
.btn-6:hover {
  box-shadow: 0 0 28px rgba(57,57,119,0.6);
}

.btn-7 {
  top: 355px;
  left: 388px;
  background: radial-gradient(circle at 35% 35%, #8eb8c9, #396577);
  box-shadow: 0 4px 20px rgba(57,101,119,0.45);
  animation: scaleIn 0.5s 0.58s ease both;
}
.btn-7:hover {
  box-shadow: 0 0 28px rgba(57,101,119,0.6);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes textSwap {
  0% { opacity: 0; transform: translateY(5px); }
  100% { opacity: 1; transform: translateY(0); }
}
.center-name.swapping {
  animation: textSwap 0.2s ease both;
}