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

:root {
  --bg: #0a0a0b;
  --bg-soft: #111114;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f1e8;
  --muted: #aaa59b;
  --gold: #d8b979;
  --gold-bright: #f2d69d;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.42);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(216, 185, 121, 0.09), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(126, 93, 54, 0.1), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Vazirmatn", sans-serif;
  overflow-x: hidden;
}

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

.page-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  width: min(100% - 34px, 1440px);
  margin-inline: auto;
  padding: 28px 10px 22px;
  display: flex;
  flex-direction: column;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    repeating-radial-gradient(
      circle at 0 0,
      rgba(255,255,255,.4) 0,
      rgba(255,255,255,.4) 1px,
      transparent 1px,
      transparent 3px
    );
  background-size: 6px 6px;
  mix-blend-mode: soft-light;
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.12;
  z-index: -2;
  pointer-events: none;
}

.ambient-one {
  width: 320px;
  height: 320px;
  background: #d8b979;
  top: -80px;
  right: 7%;
}

.ambient-two {
  width: 380px;
  height: 380px;
  background: #725c39;
  bottom: -140px;
  left: 2%;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar {
  padding: 8px 4px 26px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 185, 121, 0.55);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  box-shadow: inset 0 0 0 5px rgba(216, 185, 121, 0.03);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 600;
}

.brand-copy small {
  font-family: "Playfair Display", serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d8d3c7;
  background: rgba(255,255,255,0.025);
  font-size: 12px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 185, 121, 0.1);
  animation: pulse 2s infinite;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 7vw, 120px);
  padding: clamp(48px, 8vw, 110px) 2px;
}

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 11px;
  letter-spacing: 4px;
  direction: ltr;
  text-align: right;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6.6vw, 92px);
  line-height: 1.15;
  letter-spacing: -2px;
  font-weight: 500;
}

h1 span {
  display: block;
  margin-top: 4px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 241, 232, 0.58);
  text-shadow: 0 0 30px rgba(216, 185, 121, 0.05);
}

.lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2.2;
  font-weight: 300;
}

.divider {
  width: min(100%, 620px);
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0;
  color: var(--gold);
}

.divider span {
  height: 1px;
  flex: 1;
  background: linear-gradient(to left, transparent, rgba(216, 185, 121, 0.4), transparent);
}

.divider i {
  font-style: normal;
  font-size: 12px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.info-card {
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.info-index {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 13px;
}

.info-card div {
  display: grid;
  gap: 8px;
}

.info-card small {
  color: #8f8b84;
  font-size: 11px;
}

.info-card strong {
  font-size: 13px;
  line-height: 1.9;
  font-weight: 500;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.primary-btn {
  position: relative;
  min-width: 190px;
  height: 52px;
  padding: 0 18px 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  background: var(--text);
  color: #111;
  font-size: 13px;
  font-weight: 600;
  transition: 0.35s ease;
}

.primary-btn b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #111;
  color: var(--gold-bright);
  border-radius: 50%;
  font-size: 17px;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(245, 241, 232, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d0ccc3;
  font-size: 13px;
  border-bottom: 1px solid rgba(216, 185, 121, .3);
  padding-bottom: 4px;
  transition: 0.25s;
}

.text-link:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
}

.visual-card {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018)),
    radial-gradient(circle at center, rgba(216,185,121,.08), transparent 46%);
  box-shadow: var(--shadow);
}

.visual-card::before,
.visual-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(216,185,121,.15);
  border-radius: 28px;
}

.visual-card::after {
  inset: 38px;
  border-color: rgba(255,255,255,.05);
  border-radius: 22px;
}

.halo {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,185,121,.2), rgba(216,185,121,.02) 50%, transparent 68%);
  filter: blur(6px);
  animation: breathe 6s ease-in-out infinite;
}

.jewel-frame {
  position: relative;
  width: 290px;
  height: 290px;
  display: grid;
  place-items: center;
}

.jewel-core {
  position: relative;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 38% 62% 58% 42% / 48% 36% 64% 52%;
  border: 1px solid rgba(242,214,157,.55);
  background:
    linear-gradient(145deg, rgba(242,214,157,.12), rgba(255,255,255,.01));
  box-shadow:
    inset 0 0 40px rgba(216,185,121,.08),
    0 0 60px rgba(216,185,121,.05);
  transform: rotate(11deg);
}

.diamond {
  font-size: 50px;
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(242,214,157,.28);
  transform: rotate(-11deg);
}

.jewel-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(216,185,121,.28);
}

.orbit-one {
  width: 220px;
  height: 220px;
  animation: rotate 14s linear infinite;
}

.orbit-two {
  width: 278px;
  height: 278px;
  border-style: dashed;
  opacity: .38;
  animation: rotate-reverse 20s linear infinite;
}

.orbit-one::before,
.orbit-two::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 20px rgba(242,214,157,.5);
}

.orbit-one::before {
  top: 15px;
  left: 38px;
}

.orbit-two::before {
  bottom: 18px;
  right: 50px;
}

.visual-label {
  position: absolute;
  bottom: 44px;
  left: 0;
  right: 0;
  display: grid;
  place-items: center;
  gap: 3px;
}

.visual-label span {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 8px;
  direction: ltr;
}

.visual-label small {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 8px;
  letter-spacing: 4px;
  direction: ltr;
}

.footer {
  padding: 22px 4px 2px;
  border-top: 1px solid var(--line);
  color: #76726b;
  font-size: 11px;
}

.footer p {
  margin: 0;
}

.footer-en {
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
  direction: ltr;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(216, 185, 121, 0.08);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(216, 185, 121, 0.02);
  }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes breathe {
  0%, 100% { transform: scale(.95); opacity: .75; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 62px;
  }

  .hero-content {
    max-width: none;
  }

  .visual-card {
    min-height: 480px;
  }
}

@media (max-width: 680px) {
  .page-shell {
    width: min(100% - 22px, 1440px);
    padding-top: 16px;
  }

  .topbar {
    align-items: flex-start;
  }

  .brand-copy small {
    letter-spacing: 1.5px;
  }

  .status-pill {
    padding: 8px 11px;
    font-size: 10px;
  }

  .hero {
    padding: 44px 0 54px;
  }

  h1 {
    font-size: clamp(38px, 13vw, 58px);
    letter-spacing: -1.2px;
  }

  .lead {
    line-height: 2.05;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 420px;
    border-radius: 26px;
  }

  .jewel-frame {
    transform: scale(.86);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
