@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --blue: #8590ca;
  --yellow: #f8b341;
  --red: #cd6456;
  --green: #567258;
  --ink: #2c1f2a;
  --soft: #525952;
  --paper: #f8faf6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #dfe8df;
  font-family: 'Manrope', sans-serif;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wip-page {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  isolation: isolate;
}

.wip-photo,
.wip-shade {
  position: absolute;
  inset: 0;
}
.wip-photo {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: wip-photo-breathe 18s ease-in-out infinite alternate;
}
.wip-shade {
  z-index: -2;
  background: rgba(25, 35, 28, 0.34);
}
.wip-shade::before {
  content: '';
  position: absolute;
  inset: 0 42% 0 0;
  background: rgba(248, 250, 246, 0.94);
  border-right: 1px solid rgba(255, 255, 255, 0.46);
}

.wip-nav {
  width: 100%;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem clamp(1.2rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(44, 31, 42, 0.08);
  background: rgba(248, 250, 246, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.wip-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.42rem;
  line-height: 1;
}
.wip-brand em { font-weight: 300; }
.wip-dots,
.wip-spectrum {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.wip-dots i,
.wip-spectrum i {
  display: block;
  border-radius: 50%;
}
.wip-dots i { width: 8px; height: 8px; }
.wip-spectrum i { width: 10px; height: 10px; }
.wip-dots i:nth-child(1), .wip-spectrum i:nth-child(1) { background: var(--yellow); }
.wip-dots i:nth-child(2), .wip-spectrum i:nth-child(2) { background: var(--red); }
.wip-dots i:nth-child(3), .wip-spectrum i:nth-child(3) { background: var(--blue); }
.wip-dots i:nth-child(4), .wip-spectrum i:nth-child(4) { background: var(--green); }

.wip-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.wip-home-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  border: 1px solid rgba(133, 144, 202, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.wip-home-icon svg { width: 27px; height: 27px; overflow: visible; }
.wip-home-icon:hover,
.wip-home-icon:focus-visible {
  border-color: var(--red);
  background: rgba(205, 100, 86, 0.1);
  color: var(--red);
  transform: translateY(-2px);
  outline: none;
}
.wip-nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(44, 31, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.wip-nav-link:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.wip-langs {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: 0.2rem;
}
.wip-langs button {
  min-width: 32px;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(44, 31, 42, 0.5);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 700;
}
.wip-langs button.active { color: var(--ink); }

.wip-main {
  width: min(1440px, 100%);
  min-height: calc(100dvh - 82px);
  display: grid;
  align-items: center;
  padding: clamp(2.4rem, 7vh, 5rem) clamp(1.2rem, 6vw, 6.2rem);
}
.wip-copy {
  width: min(690px, 51vw);
  animation: wip-copy-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wip-spectrum { margin-bottom: 1.5rem; }
.wip-spectrum i { animation: wip-dot-pulse 2.8s ease-in-out infinite; }
.wip-spectrum i:nth-child(2) { animation-delay: 0.2s; }
.wip-spectrum i:nth-child(3) { animation-delay: 0.4s; }
.wip-spectrum i:nth-child(4) { animation-delay: 0.6s; }
.wip-kicker {
  margin: 0 0 1rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}
.wip-title {
  max-width: 680px;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 6.5vw, 6.4rem);
  font-weight: 300;
  line-height: 0.92;
}
.wip-title em {
  display: block;
  color: var(--blue);
  font-weight: 300;
}
.wip-lead {
  max-width: 590px;
  margin: 1.8rem 0 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.65;
}

.wip-progress {
  max-width: 550px;
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(44, 31, 42, 0.13);
}
.wip-progress-line {
  position: relative;
  width: 100%;
  height: 7px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 999px;
  background: rgba(44, 31, 42, 0.08);
}
.wip-progress-line i:nth-child(1) { background: var(--blue); }
.wip-progress-line i:nth-child(2) { background: var(--yellow); }
.wip-progress-line i:nth-child(3) { background: var(--red); }
.wip-progress-line i:nth-child(4) { background: var(--green); }
.wip-progress-line::after {
  content: '';
  position: absolute;
  top: -5px;
  bottom: -5px;
  width: 32%;
  left: -38%;
  background: rgba(255, 255, 255, 0.68);
  transform: skewX(-18deg);
  animation: wip-scan 3.6s ease-in-out infinite;
}
.wip-progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 600;
}
.wip-progress-copy span:last-child { color: var(--green); }

.wip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.wip-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(44, 31, 42, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}
.wip-action--contact {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}
.wip-action:hover { transform: translateY(-3px); }
.wip-action--contact:hover { border-color: var(--red); background: var(--red); }
.wip-action--home:hover { border-color: var(--blue); color: var(--blue); }

@keyframes wip-copy-in {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes wip-photo-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.055); }
}
@keyframes wip-dot-pulse {
  0%, 72%, 100% { transform: translateY(0); }
  82% { transform: translateY(-7px); }
}
@keyframes wip-scan {
  0%, 12% { left: -38%; }
  68%, 100% { left: 110%; }
}

@media (max-width: 860px) {
  .wip-shade { background: rgba(248, 250, 246, 0.78); }
  .wip-shade::before { inset: 0; background: rgba(248, 250, 246, 0.72); border: 0; }
  .wip-photo { object-position: 58% center; }
  .wip-nav { min-height: 68px; padding: 0.8rem 1rem; }
  .wip-brand { font-size: 1.18rem; }
  .wip-nav-link { min-height: 38px; padding: 0 0.75rem; }
  .wip-nav-link--home { display: none; }
  .wip-main { min-height: calc(100dvh - 68px); padding: 2.2rem 1.15rem 2.4rem; align-items: center; }
  .wip-copy {
    width: 100%;
    padding: 1.5rem;
    border-left: 5px solid var(--red);
    background: rgba(248, 250, 246, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .wip-title { font-size: clamp(3rem, 14vw, 4.6rem); }
  .wip-lead { margin-top: 1.3rem; font-size: 1rem; line-height: 1.55; }
  .wip-progress { margin-top: 1.5rem; }
  .wip-actions { margin-top: 1.5rem; }
  .wip-action { flex: 1 1 150px; }
}

@media (max-width: 430px) {
  .wip-brand .wip-dots { gap: 3px; }
  .wip-brand .wip-dots i { width: 7px; height: 7px; }
  .wip-brand { gap: 0.45rem; }
  .wip-nav-actions { gap: 0.25rem; }
  .wip-nav-link { padding: 0 0.7rem; font-size: 0.73rem; }
  .wip-langs { display: none; }
  .wip-copy { padding: 1.25rem 1rem 1.35rem; }
  .wip-spectrum { margin-bottom: 1rem; }
  .wip-kicker { margin-bottom: 0.75rem; }
  .wip-title { font-size: clamp(2.75rem, 13vw, 3.65rem); }
  .wip-progress-copy { flex-direction: column; gap: 0.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .wip-photo,
  .wip-copy,
  .wip-spectrum i,
  .wip-progress-line::after { animation: none; }
}
