:root {
  --bg: #060606;
  --panel: #10100f;
  --panel-soft: #171512;
  --text: #f5f0e4;
  --muted: #c8bca5;
  --gold: #d8a73c;
  --gold-bright: #ffe28a;
  --gold-dark: #8b5f16;
  --line: rgba(216, 167, 60, 0.32);
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 167, 60, 0.13), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #0d0c0a 46%, #070707 100%);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

body.intro-lock {
  overflow: hidden;
}

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

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

.intro {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 58%, rgba(249, 187, 57, 0.17), transparent 18rem),
    #030303;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

body.intro-finished .intro {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-glow {
  position: absolute;
  width: min(86vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 92, 0.2), transparent 58%);
  filter: blur(14px);
  animation: pulseGlow 3.4s ease-in-out infinite;
}

.coin-stage {
  position: relative;
  width: min(58vw, 330px);
  aspect-ratio: 1;
  perspective: 1000px;
  animation: stageRise 4.6s ease both;
}

.coin-shadow {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -18%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 207, 81, 0.42), transparent 68%);
  filter: blur(10px);
  animation: shadowBloom 4.4s ease both;
}

.coin {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  animation: coinSpin 2.2s cubic-bezier(0.2, 0.72, 0.25, 1) both, coinSplitTop 1.4s 2.35s cubic-bezier(0.32, 0.9, 0.33, 1) forwards;
}

.coin-bottom {
  clip-path: inset(50% 0 0 0);
  animation-name: coinSpin, coinSplitBottom;
}

.coin-top {
  clip-path: inset(0 0 50% 0);
}

.coin-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 12px solid transparent;
  background:
    linear-gradient(#090806, #090806) padding-box,
    conic-gradient(from 120deg, #6e470d, #ffe89f, #c99225, #fff0ae, #8a5d12, #e5b64b, #6e470d) border-box;
  box-shadow:
    inset 0 0 0 11px rgba(255, 226, 138, 0.2),
    inset 0 0 58px rgba(255, 208, 71, 0.14),
    0 0 55px rgba(216, 167, 60, 0.34);
}

.coin-face::before {
  content: "DK";
  position: absolute;
  inset: 16%;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 225, 137, 0.72);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 12vw, 7rem);
  letter-spacing: 0;
  text-shadow: 0 2px 0 #5f3b08, 0 0 22px rgba(255, 213, 93, 0.54);
}

.intro-reveal {
  position: absolute;
  width: min(82vw, 560px);
  opacity: 0;
  text-align: center;
  transform: translateY(30px) scale(0.96);
  animation: revealBrand 1.45s 2.95s ease forwards;
}

.intro-logo {
  width: min(78vw, 480px);
  margin: 0 auto 1rem;
  border-radius: 8px;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.88));
}

.intro-reveal p {
  margin: 0 auto;
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1rem, 3vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(216, 167, 60, 0.22);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.brand span {
  white-space: nowrap;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  color: var(--muted);
  font-size: 0.94rem;
}

nav a:hover,
.footer a:hover {
  color: var(--gold-bright);
}

.header-action {
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  color: var(--gold-bright);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 5vw, 5rem);
  overflow: hidden;
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-coin {
  position: relative;
  width: min(38vw, 510px);
  min-width: 310px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 28%, #fff2a7, #c69025 36%, #603c0b 70%);
  box-shadow:
    inset -16px 0 26px rgba(0, 0, 0, 0.34),
    0 0 90px rgba(216, 167, 60, 0.32);
  animation: coinFloat 4.5s ease-in-out infinite;
}

.hero-coin img {
  width: 78%;
  height: 78%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.72;
}

.gold-orbit {
  position: absolute;
  width: 90%;
  height: 34%;
  border: 2px solid rgba(216, 167, 60, 0.32);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.orbit-two {
  width: 72%;
  transform: rotate(24deg);
  border-color: rgba(255, 226, 138, 0.22);
}

.hero-content {
  max-width: 690px;
}

.hero-logo {
  width: min(90%, 520px);
  margin-bottom: 1rem;
  border-radius: 8px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h3 {
  margin: 0;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-copy,
.section-copy p,
.cta p,
.footer p {
  color: var(--muted);
}

.hero-copy {
  max-width: 42rem;
  margin: 1.4rem 0 2rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.button-primary {
  background: linear-gradient(135deg, #ffe28a, #b67a1d 70%);
  color: #161006;
  box-shadow: 0 12px 34px rgba(216, 167, 60, 0.24);
}

.button-ghost {
  border: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.04);
}

.button.large {
  min-height: 60px;
  padding-inline: 1.7rem;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.scroll-cue {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--gold-bright);
  border-bottom: 2px solid var(--gold-bright);
  transform: translateX(-50%) rotate(45deg);
  opacity: 0.8;
  animation: scrollCue 1.6s ease-in-out infinite;
}

.band,
.services,
.moments,
.cta,
.pillars,
.footer {
  border-top: 1px solid var(--line);
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(280px, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
}

.section-copy p {
  font-size: 1.08rem;
}

.photo-panel {
  min-height: 360px;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 226, 138, 0.5), transparent 48%, rgba(216, 167, 60, 0.26));
}

.photo-frame {
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: #0c0b09;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 32%;
  filter: saturate(0.95) contrast(1.05);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  background: var(--line);
}

.pillars article {
  min-height: 300px;
  padding: 3rem clamp(1.2rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, #0b0b0a, #070707);
  text-align: center;
}

.pillars p,
.pillars li,
.service-card p {
  color: var(--muted);
}

.pillars ul {
  max-width: 18rem;
  margin: 1rem auto 0;
  padding-left: 1.1rem;
  text-align: left;
}

.line-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
}

.target-icon::before,
.eye-icon::before,
.diamond-icon::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 2px solid var(--gold-bright);
  border-radius: 50%;
}

.eye-icon {
  border-radius: 60% 40%;
  transform: rotate(45deg);
}

.eye-icon::before {
  inset: 17px;
  background: var(--gold);
}

.diamond-icon {
  border-radius: 0;
  transform: rotate(45deg);
}

.diamond-icon::before {
  display: none;
}

.services,
.moments {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2rem);
}

.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.4rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  text-align: center;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 1rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 1.8rem;
}

.service-card h3 {
  min-height: 3.4rem;
  font-size: 1rem;
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.moment-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.moment-card {
  min-height: 210px;
  border: 1px solid rgba(216, 167, 60, 0.45);
  border-radius: 8px;
  background: linear-gradient(135deg, #17100d, #080808);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.moment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.moment-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.moment-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.cta {
  max-width: var(--max);
  margin: 0 auto;
  justify-content: space-between;
  padding: clamp(3rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem);
}

.cta h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.7fr;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.4rem clamp(1.25rem, 4vw, 2rem);
}

.footer h2 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer a,
.footer p {
  display: block;
  margin: 0.35rem 0;
  font-size: 0.96rem;
}

.footer-brand img {
  width: 230px;
  border-radius: 6px;
}

.socials {
  display: flex;
  gap: 0.65rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
}

@keyframes pulseGlow {
  50% {
    transform: scale(1.08);
    opacity: 0.75;
  }
}

@keyframes stageRise {
  0% {
    transform: translateY(40px) scale(0.72);
    opacity: 0;
  }
  16%,
  55% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-24px) scale(0.86);
    opacity: 0;
  }
}

@keyframes coinSpin {
  0% {
    transform: rotateY(0deg) rotateZ(-8deg);
  }
  100% {
    transform: rotateY(1080deg) rotateZ(0deg);
  }
}

@keyframes coinSplitTop {
  0%,
  35% {
    transform: rotateY(1080deg) translateY(0);
  }
  100% {
    transform: rotateY(1080deg) translateY(-140px);
    opacity: 0;
  }
}

@keyframes coinSplitBottom {
  0%,
  35% {
    transform: rotateY(1080deg) translateY(0);
  }
  100% {
    transform: rotateY(1080deg) translateY(140px);
    opacity: 0;
  }
}

@keyframes shadowBloom {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  42% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes revealBrand {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes coinFloat {
  50% {
    transform: translateY(-16px) rotate(-2deg);
  }
}

@keyframes scrollCue {
  50% {
    transform: translate(-50%, 8px) rotate(45deg);
  }
}

@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;
  }

  body.intro-lock {
    overflow: auto;
  }
}

@media (max-width: 1000px) {
  .hero,
  .about,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-art {
    min-height: 420px;
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.86rem;
  }

  .header-action {
    position: absolute;
    right: 1rem;
    top: 0.9rem;
  }

  .brand span {
    max-width: 11rem;
    white-space: normal;
    line-height: 1.15;
  }

  .hero {
    min-height: auto;
    padding-bottom: 5rem;
  }

  .hero-art {
    min-height: 330px;
  }

  .hero-coin {
    min-width: 250px;
  }

  .pillars,
  .service-grid,
  .moment-strip,
  .footer {
    grid-template-columns: 1fr;
  }

  .pillars {
    gap: 1px;
  }

  .pillars article {
    min-height: auto;
  }

  .button,
  .header-action {
    font-size: 0.86rem;
  }
}

@media (max-width: 460px) {
  .header-action {
    position: static;
  }

  .hero-actions .button,
  .cta .button {
    width: 100%;
  }

  .coin-stage {
    width: 72vw;
  }
}
