@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --ink: #0d0c0a;
  --linen: #f8f5ee;
  --stonewash: #ebe6dc;
  --champagne: #c6a96d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

::selection {
  background: rgba(198, 169, 109, 0.34);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.hero-vignette::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.88) 0%, rgba(13, 12, 10, 0.52) 44%, rgba(13, 12, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(13, 12, 10, 0.15) 0%, rgba(13, 12, 10, 0.66) 100%);
  z-index: 1;
}

.hero-image {
  animation: slowZoom 18s ease-out forwards;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

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

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal-delay-3 {
  transition-delay: 320ms;
}

.glass-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(13, 12, 10, 0.36);
  backdrop-filter: blur(18px);
}

.glass-nav.is-scrolled {
  background: rgba(248, 245, 238, 0.88);
  color: var(--ink);
  border-bottom-color: rgba(13, 12, 10, 0.08);
  box-shadow: 0 16px 38px rgba(13, 12, 10, 0.08);
}

.section-min {
  min-height: min(100vh, 920px);
}

.gold-line {
  position: relative;
}

.gold-line::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 18px;
  background: var(--champagne);
}

.magnetic-card {
  transform: translateY(0);
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
}

.magnetic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(13, 12, 10, 0.14);
  border-color: rgba(198, 169, 109, 0.55);
}

.image-lift img {
  transform: scale(1.01);
  transition: transform 850ms ease, filter 850ms ease;
}

.image-lift:hover img {
  transform: scale(1.075);
  filter: saturate(1.06) contrast(1.04);
}

.before-renovation-image {
  filter: grayscale(1) sepia(0.18) contrast(0.82) brightness(0.74);
}

.marquee-track {
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.range-premium {
  appearance: none;
  height: 2px;
  border-radius: 999px;
  background: rgba(248, 245, 238, 0.78);
  outline: none;
}

.range-premium::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--linen);
  border: 5px solid var(--champagne);
  box-shadow: 0 10px 24px rgba(13, 12, 10, 0.32);
  cursor: grab;
}

.range-premium::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--linen);
  border: 5px solid var(--champagne);
  box-shadow: 0 10px 24px rgba(13, 12, 10, 0.32);
  cursor: grab;
}

.input-luxury {
  width: 100%;
  border: 1px solid rgba(13, 12, 10, 0.12);
  background: rgba(255, 255, 255, 0.58);
  padding: 16px 18px;
  font-size: 14px;
  letter-spacing: 0;
  outline: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.input-luxury:focus {
  border-color: rgba(198, 169, 109, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 0 4px rgba(198, 169, 109, 0.15);
}

.text-balance {
  text-wrap: balance;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
