:root {
  color-scheme: dark;
  --ink: #171116;
  --cream: #fff9f1;
  --muted: rgba(255, 249, 241, 0.76);
  --pink: #f23b96;
  --gold: #d8ac52;
  --line: rgba(255, 255, 255, 0.22);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.coming-soon {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.photo,
.shade {
  position: absolute;
  inset: 0;
}

.photo {
  z-index: -3;
  background-image: url("/assets/abhilasha-sydney.jpg");
  background-size: cover;
  background-position: 65% center;
  transform: scale(1.015);
  animation: settle 1.5s ease-out both;
}

.shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 10, 16, 0.97) 0%, rgba(18, 10, 16, 0.88) 37%, rgba(18, 10, 16, 0.34) 70%, rgba(18, 10, 16, 0.12) 100%),
    linear-gradient(180deg, rgba(20, 11, 17, 0.15), rgba(20, 11, 17, 0.5));
}

.content {
  width: min(700px, 100%);
  padding: clamp(44px, 7vw, 88px) clamp(24px, 7vw, 104px);
  animation: reveal 0.9s 0.15s ease-out both;
}

.logo {
  display: block;
  width: clamp(176px, 21vw, 260px);
  height: auto;
  margin: -68px 0 -52px -30px;
}

.eyebrow {
  margin: 50px 0 20px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.65;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.15rem, 6.1vw, 6.15rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-wrap: balance;
}

.intro {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.8;
}

.divider {
  width: 86px;
  height: 1px;
  margin: 32px 0 24px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(242, 59, 150, 0.75);
  background: rgba(242, 59, 150, 0.16);
  outline: none;
}

.socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials svg path:not(.cutout) {
  fill: currentColor;
  stroke: none;
}

.socials svg .fill {
  fill: currentColor;
  stroke: none;
}

.socials svg .cutout {
  fill: var(--ink);
  stroke: none;
}

.location {
  margin: 24px 0 0;
  color: rgba(255, 249, 241, 0.52);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes settle {
  from {
    opacity: 0.72;
    transform: scale(1.055);
  }
  to {
    opacity: 1;
    transform: scale(1.015);
  }
}

@media (max-width: 760px) {
  .coming-soon {
    align-items: end;
  }

  .photo {
    background-position: 63% center;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(18, 10, 16, 0.16) 0%, rgba(18, 10, 16, 0.38) 33%, rgba(18, 10, 16, 0.97) 72%, rgba(18, 10, 16, 1) 100%);
  }

  .content {
    width: 100%;
    padding: 42px 24px 36px;
  }

  .logo {
    width: 180px;
    margin: -62px 0 -48px -24px;
  }

  .eyebrow {
    max-width: 300px;
    margin-bottom: 14px;
  }

  h1 {
    max-width: 520px;
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .intro {
    max-width: 520px;
    margin-top: 18px;
    line-height: 1.65;
  }

  .divider {
    margin: 24px 0 20px;
  }
}

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