:root {
  --bg: #060606;
  --bg-soft: #0f0f0f;
  --text: #f4f4f4;
  --muted: #bfbfbf;
  --line: #3a3a3a;
  --accent: #e8e8e8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Rajdhani", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #1b1b1b 0%, var(--bg) 50%), var(--bg);
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 3px 3px;
  z-index: -1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(6, 6, 6, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 6vw;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  height: 62px;
  width: auto;
  display: block;
  filter: brightness(1.05);
}

.brand-name {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text);
}

nav {
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--text);
}

.cta,
.btn {
  border: 1px solid var(--accent);
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #0b0b0b;
}

.btn-primary:hover {
  background: #ffffff;
}

.btn-ghost {
  background: transparent;
}

main {
  padding: 0 6vw;
}

section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5.5rem 0;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.2rem, 5.2vw, 4.6rem);
  max-width: 820px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h3 {
  font-size: 1.9rem;
}

p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: clamp(24px, 6vw, 96px);
  padding-right: clamp(24px, 6vw, 96px);
  display: grid;
  grid-template-columns: minmax(360px, 560px) minmax(300px, 420px);
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.8rem);
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(105%);
  opacity: 0.34;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    96deg,
    rgba(6, 6, 6, 0.9) 0%,
    rgba(6, 6, 6, 0.76) 45%,
    rgba(6, 6, 6, 0.5) 100%
  );
  z-index: -1;
}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
  filter: grayscale(0.05) drop-shadow(0 8px 28px rgba(255, 255, 255, 0.1));
}

.hero-content {
  display: grid;
  gap: 1.2rem;
  min-width: 0;
}

.hero-content h1 {
  max-width: 10.5ch;
  line-height: 1;
  text-wrap: balance;
}

.hero-emblem {
  margin: 0;
  padding: 0.75rem;
  border-radius: 1.5rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 100%;
  max-width: 420px;
  justify-self: end;
}

.hero-glow {
  position: absolute;
  right: -13rem;
  top: 24%;
  width: 33rem;
  height: 33rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  filter: blur(18px);
  z-index: -1;
  animation: drift 8s ease-in-out infinite;
}

.hero-text {
  max-width: 48ch;
  color: #c8c8c8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.headline-strip {
  padding-top: 0.4rem;
}

.headline-strip h2 {
  margin-bottom: 1rem;
}

.headline-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.headline-list p {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #d6d6d6;
  background: rgba(255, 255, 255, 0.02);
}

.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.about p {
  margin-top: 1rem;
}

.about-card,
.contact-panel {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: 1rem;
  padding: 1.5rem;
}

.card-title {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.about-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.about-card li {
  margin-bottom: 0.5rem;
}

.about-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--text);
}

.services .grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services article {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
  background: var(--bg-soft);
  transition: transform 200ms ease, border-color 200ms ease;
}

.services article:hover {
  transform: translateY(-4px);
  border-color: #808080;
}

.services article p {
  margin-top: 0.55rem;
}

.services article span {
  margin-top: 1.1rem;
  display: inline-block;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.gallery-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.2rem;
}

.room-feature {
  margin: 0;
  min-height: 560px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0b0b;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
}

.room-feature img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.gallery-points {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.tile {
  min-height: 170px;
  border-radius: 1rem;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: end;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-panel p {
  margin-top: 0;
}

.contact p {
  margin-top: 0.7rem;
}

.contact .btn {
  display: inline-block;
  margin-top: 1rem;
}

.contact-panel .btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  justify-content: flex-start;
  margin-top: 0.15rem;
}

.contact-panel .btn-icon .icon {
  width: 1.38rem;
  height: 1.38rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.contact-panel .btn-icon svg {
  width: 0.82rem;
  height: 0.82rem;
  display: block;
  fill: currentColor;
}

.contact-panel .map-link .icon {
  background: rgba(255, 107, 107, 0.2);
  color: #ff8a8a;
}

.contact-panel .insta-link .icon {
  background: rgba(255, 95, 162, 0.2);
  color: #ff94c6;
}

.app-title {
  margin-top: 1.6rem;
}

.app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.store-badge {
  margin-top: 0;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 164px;
  height: 52px;
  background: #000;
}

.store-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.store-badge-image {
  transition: transform 160ms ease;
}

.store-badge-apple .apple-image {
  transform: scale(0.92);
}

.store-badge-google .google-image {
  transform: scale(1.24) translateX(-1px);
}

.store-badge:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.45);
}

footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 6vw 1.8rem;
}

footer p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

footer a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

footer a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.95);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .topbar {
    padding: 0.8rem 4vw;
  }

  .brand-logo {
    height: 50px;
  }

  .brand-name {
    font-size: 0.88rem;
    letter-spacing: 0.15em;
  }

  main {
    padding: 0 4vw;
  }

  .about,
  .services .grid,
  .gallery-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .headline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-points {
    grid-template-rows: none;
  }

  .room-feature {
    min-height: 260px;
  }

  section {
    padding: 4.2rem 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1rem;
    padding-left: 4vw;
    padding-right: 4vw;
    gap: 1.2rem;
  }

  .hero::before {
    background-position: 62% center;
    opacity: 0.3;
  }

  .hero-content h1 {
    max-width: 12ch;
  }

  .hero-emblem {
    justify-self: start;
    width: min(86vw, 360px);
  }

  .hero-glow {
    width: 21rem;
    height: 21rem;
    right: -9rem;
    top: 5%;
  }

  .store-badge {
    width: 152px;
    height: 48px;
  }
}
