:root {
  --dark: #08080a;
  --dark2: #0d0d10;
  --dark3: #131318;
  --gold: #c9a84c;
  --gold2: #e8c97a;
  --goldx: #f0d898;
  --border: rgba(201, 168, 76, 0.14);
  --card: rgba(255, 255, 255, 0.03);
  --gray: #7a7060;
  --cream: #ede8dc;
  --cream2: #a89e88;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--dark);
  color: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  min-height: 100vh;
  cursor: none;
}

/* ─── CURSOR ─── */
#cur-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
#cur-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    border-color 0.2s;
}

/* ─── GRAIN ─── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ─── GRID BG ─── */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    black 20%,
    transparent 100%
  );
}

/* ─── GLOW ─── */
.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 40%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 15% 80%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 35% 35% at 85% 15%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 50%
    );
}

/* ─── WRAPPER ─── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── NAV ─── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5%;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 10, 0.6);
  backdrop-filter: blur(20px);
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.logo span {
  font-weight: 300;
  color: var(--cream2);
}
.nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  padding: 0.28rem 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.6);
  }
}
.nav-right {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream2);
}

/* ─── HERO ─── */
.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding: 5rem 5% 4rem;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}

.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeUp 0.7s ease both;
}
.coming-soon-tag::before {
  content: "✦";
  font-size: 0.6rem;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.7s 0.08s ease both;
}
h1 .line2 {
  display: block;
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
h1 .line3 {
  display: block;
  color: var(--cream2);
  font-size: 0.55em;
  font-style: normal;
  letter-spacing: 0.02em;
  margin-top: 0.3em;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--cream2);
  max-width: 520px;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.7s 0.16s ease both;
}

/* Divider row */
.divider-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2.4rem 0;
  animation: fadeUp 0.7s 0.32s ease both;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.divider-text {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

/* Services preview */
.services-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: fadeUp 0.7s 0.4s ease both;
}
.svc-pill {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--cream2);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.svc-pill:hover {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.5);
}

/* ─── RIGHT CARD ─── */
.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.2rem;
  animation: fadeUp 0.7s 0.36s ease both;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold2),
    transparent
  );
}
.card-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.card-tag::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* Profile block */
.profile-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.4rem;
}
.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(201, 168, 76, 0.35);
  overflow: hidden;
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.profile-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.profile-info p {
  font-size: 0.72rem;
  color: var(--cream2);
  line-height: 1.5;
}
.profile-info em {
  color: var(--gold);
  font-style: normal;
}

/* Stats mini */
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.mini-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
}
.mini-stat .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.mini-stat .lbl {
  font-size: 0.65rem;
  color: var(--gray);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

/* Credential list */
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  padding: 0.7rem 0.9rem;
}
.cred-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.45rem;
  flex-shrink: 0;
}
.cred-text {
  font-size: 0.75rem;
  color: var(--cream2);
  line-height: 1.5;
}
.cred-text strong {
  color: var(--cream);
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
}

/* Social row */
.social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.social-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.social-link {
  font-size: 0.72rem;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}
.social-link:hover {
  color: var(--gold2);
}
.social-link::after {
  content: "↗";
  font-size: 0.8rem;
}

/* ─── STATS BAR ─── */
.stats-bar {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(201, 168, 76, 0.03);
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(201, 168, 76, 0.04);
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 1.4rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 8, 10, 0.4);
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.footer-meta {
  font-size: 0.7rem;
  color: var(--gray);
}
.footer-loc {
  font-size: 0.7rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-loc::before {
  content: "◆";
  font-size: 0.4rem;
  color: var(--gold);
}

/* ─── QUOTE STRIP ─── */
.quote-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 5%;
  background: rgba(201, 168, 76, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow: hidden;
}
.quote-strip blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--cream2);
  text-align: center;
  max-width: 700px;
  line-height: 1.6;
}
.quote-strip cite {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.6rem;
  font-style: normal;
}
.qmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  flex-shrink: 0;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3.5rem 5% 3rem;
  }
  .hero-card {
    max-width: 480px;
  }
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }
  nav .nav-right {
    display: none;
  }
}
@media (max-width: 560px) {
  .hero {
    padding: 2.5rem 5% 2rem;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  footer {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
  .mini-stats {
    grid-template-columns: 1fr 1fr;
  }
  h1 {
    font-size: clamp(2.6rem, 10vw, 3.5rem);
  }
  .quote-strip .qmark {
    display: none;
  }
}
