:root {
  --background: #0a0a0a;
  --foreground: #f5f5f0;
  --graphite: #2a2a2a;
  --silver: #8c8c88;
  --gold: #b8a369;
  --border: rgba(255, 255, 255, 0.1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --shadow-silver:
    0 0 0 1px rgba(140, 140, 136, 0.35), 0 18px 60px -20px rgba(140, 140, 136, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

.yy-def {
  position: absolute;
  width: 0;
  height: 0;
}

.yy {
  color: var(--silver);
  display: block;
}

.spin-slow {
  animation: spin 26s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* utilities */
.wrap {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wrap.narrow {
  max-width: 768px;
}
.center {
  text-align: center;
}
.measure {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-7 {
  margin-top: 1.75rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.flex-1 {
  flex: 1;
}
.w-12 {
  width: 3rem;
}

.eyebrow {
  font-size: 0.6875rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--silver);
}

.label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
}

.h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  line-height: 1.2;
}
.h2.big {
  font-size: clamp(2.25rem, 7vw, 3rem);
}
.h2 em,
.hero-title em {
  font-style: italic;
}
.h3 {
  font-size: 1.5rem;
}

.body {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.8;
}
.body.sm {
  font-size: 0.875rem;
}

.hairline {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 163, 105, 0.7), transparent);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.avatar-wrap {
  position: relative;
  display: inline-flex;
}
.avatar-ring {
  position: absolute;
  inset: -0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}
.avatar {
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}
.hero-title {
  margin-top: 1.25rem;
  font-size: clamp(3rem, 13vw, 4.5rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-weight: 500;
}
.rule-row {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-sub {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver);
}
.veil {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 10rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.7) 55%, #0a0a0a 100%);
}

.btn {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition:
    border-color 0.5s ease,
    color 0.5s ease;
}
.btn.lg {
  padding: 1.25rem 2.5rem;
}
.btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.link-gold {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.5s ease;
}
.link-gold:hover {
  color: var(--gold);
}

/* DIVIDER */
.divider {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 4rem 1.5rem;
}
.divider-yy {
  display: block;
  flex-shrink: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* GRIDS */
.grid {
  display: grid;
  gap: 1.25rem;
}
.grid-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 3rem;
}

/* TILES */
.tile {
  border: 1px solid var(--border);
  background: linear-gradient(140deg, #2a2a2a 0%, #131313 100%);
  transition:
    box-shadow 0.5s ease,
    transform 0.5s ease,
    border-color 0.5s ease;
}
.tile:hover {
  box-shadow: var(--shadow-silver);
  transform: translateY(-4px);
  border-color: rgba(184, 163, 105, 0.45);
}
.tile.loc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2rem;
  text-align: left;
}
.tile-yy {
  transition: transform 0.7s ease;
}
.tile:hover .tile-yy {
  transform: rotate(180deg);
}
.tile-cta {
  margin-top: 2.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.5s ease;
}
.tile:hover .tile-cta {
  color: var(--gold);
}

.tile.soon {
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.tile.quote {
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-style: italic;
  color: rgba(140, 140, 136, 0.5);
}
.soon-label {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--silver);
}

/* STATS */
.stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}
.stat-label {
  margin-top: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
}

.contact {
  padding-bottom: 10rem;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
footer .yy {
  margin: 0 auto;
  color: rgba(140, 140, 136, 0.6);
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(42, 42, 42, 0.9);
  backdrop-filter: blur(8px);
  padding: 1rem 1.25rem;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition:
    border-color 0.5s ease,
    color 0.5s ease;
}
.wa-float:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* REVEAL */
[data-reveal] {
  opacity: 0;
}
[data-reveal].is-visible,
.fade-up {
  animation: fadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0ms);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1;
  }
}

@media (min-width: 640px) {
  .avatar {
    width: 13rem;
    height: 13rem;
  }
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .divider {
    padding: 6rem 1.5rem;
  }
  .stat-value {
    font-size: 1.875rem;
  }
}
