/* =========================================================
   Kaneel Lapidary & Gems — Coming Soon (static temporary page)
   Brand tokens adapted for a dark luxury teaser experience.
   ========================================================= */

:root {
  --navy: #0b1c2c;
  --navy-deep: #070d14;
  --charcoal: #101820;
  --sapphire: #1e40af;
  --sapphire-soft: #5b8def;
  --copper: #b08d57;
  --copper-bright: #d4b57a;
  --amethyst: #7e22ce;
  --magenta: #db2777;
  --ivory: #f7f4ef;
  --ivory-soft: rgba(247, 244, 239, 0.78);
  --muted: rgba(247, 244, 239, 0.52);
  --line: rgba(176, 141, 87, 0.28);
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 5.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(30, 64, 175, 0.22), transparent 55%),
    radial-gradient(900px 600px at 0% 100%, rgba(176, 141, 87, 0.12), transparent 50%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--charcoal) 48%, #0a1420 100%);
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Ambient ---------- */

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient__glow--sapphire {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: 8%;
  right: 4%;
  background: rgba(30, 64, 175, 0.35);
}

.ambient__glow--copper {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  bottom: 8%;
  left: -4%;
  background: rgba(176, 141, 87, 0.22);
  animation-delay: -6s;
}

.ambient__glow--amethyst {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  top: 42%;
  left: 42%;
  background: rgba(126, 34, 206, 0.16);
  animation-delay: -11s;
}

.ambient__facet {
  position: absolute;
  inset: 0;
  background-image: url("assets/facet-pattern.svg");
  background-size: 140px 140px;
  opacity: 0.045;
  mix-blend-mode: screen;
}

.ambient__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---------- Layout shell ---------- */

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header,
.hero,
.message,
.contact,
.site-footer {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand__logo {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(176, 141, 87, 0.35);
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand__tag {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--copper-bright);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(11, 28, 44, 0.45);
  backdrop-filter: blur(8px);
}

.status-pill__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--copper-bright);
  box-shadow: 0 0 0 0 rgba(176, 141, 87, 0.55);
  animation: pulse 2.8s ease-out infinite;
}

/* ---------- Hero ---------- */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 10vh, 7rem) 0 clamp(3.5rem, 9vh, 6rem);
  min-height: calc(100vh - var(--header-h) - 10rem);
  text-align: center;
}

.hero__copy {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--copper-bright);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 auto;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 8vw, 6.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.hero__lede {
  margin: 1.6rem auto 0;
  max-width: 40rem;
  color: var(--ivory-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  font-weight: 300;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  color: var(--navy-deep);
  box-shadow: 0 12px 30px -18px rgba(176, 141, 87, 0.9);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -16px rgba(176, 141, 87, 0.95);
}

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ivory-soft);
  background: transparent;
}

.btn--ghost:hover {
  border-color: rgba(176, 141, 87, 0.55);
  color: var(--ivory);
  background: rgba(247, 244, 239, 0.03);
}

.hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 1s ease forwards;
}

.hero__copy > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero__copy > *:nth-child(2) {
  animation-delay: 0.28s;
}
.hero__copy > *:nth-child(3) {
  animation-delay: 0.44s;
}
.hero__copy > *:nth-child(4) {
  animation-delay: 0.6s;
}

/* ---------- Message + contact ---------- */

.message {
  padding: clamp(2.5rem, 6vh, 4rem) 0;
  text-align: center;
}

.message__rule {
  width: 3.5rem;
  height: 1px;
  margin: 0 auto 1.6rem;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.message h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.message p {
  margin: 1rem auto 0;
  max-width: 38rem;
  color: var(--ivory-soft);
  font-size: 1.02rem;
}

.contact {
  padding: 0 0 clamp(3rem, 7vh, 4.5rem);
}

.contact__list {
  list-style: none;
  margin: 0;
  padding: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  border-top: 1px solid rgba(176, 141, 87, 0.16);
}

.contact__label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--copper-bright);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact__value {
  color: var(--ivory-soft);
  font-size: 0.98rem;
  font-weight: 300;
}

.contact__link {
  transition: color 0.3s ease;
}

.contact__link:hover {
  color: var(--copper-bright);
}

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.5rem 0 2.25rem;
  border-top: 1px solid rgba(176, 141, 87, 0.16);
}

.site-footer__brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer__copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- Motion ---------- */

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(176, 141, 87, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(176, 141, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(176, 141, 87, 0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(18px, -22px, 0) scale(1.08);
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .contact__list {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .message,
  .contact,
  .site-footer {
    width: min(100% - 1.5rem, var(--max));
  }

  .brand__tag {
    display: none;
  }

  .brand__logo {
    width: 2.75rem;
    height: 2.75rem;
  }

  .status-pill {
    padding: 0.45rem 0.75rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 360px) {
  .brand__name {
    font-size: 1.3rem;
  }

  .status-pill {
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__copy > * {
    opacity: 1;
    transform: none;
  }
}
