/* ==========================================================================
   Aristos Public Relations — main stylesheet
   ========================================================================== */

:root {
  --navy: #0a0e1a;
  --navy-2: #10152a;
  --cream: #faf7f1;
  --cream-2: #f1ebdf;
  --ink: #1c1f2b;
  --ink-soft: #4c5166;
  --paper: #f5f3ee;
  --dim: #b9c0d4;
  --gold: #e3b04b;
  --gold-soft: #f2cf8a;
  --violet: #7c5cff;
  --rose: #ff5f87;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(to bottom, rgba(10,14,26,0.85), rgba(10,14,26,0));
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(10,14,26,0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.brand em {
  font-style: normal;
  color: var(--gold);
}
.site-header nav { display: flex; gap: 2.2rem; }
.site-header nav a {
  color: var(--dim);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.site-header nav a:hover { color: var(--paper); }
.nav-cta {
  border: 1px solid rgba(227,176,75,0.55);
  padding: 9px 20px;
  border-radius: 999px;
  color: var(--gold-soft) !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, #1a2140 0%, var(--navy) 55%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}
.hero-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 120% 80% at 50% -10%, rgba(26,33,64,0.35) 0%, rgba(10,14,26,0.55) 55%, rgba(6,9,18,0.78) 100%);
}
@media (prefers-reduced-motion: reduce), (prefers-reduced-data: reduce) {
  .hero-video { display: none; }
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  filter: blur(60px);
  opacity: 0.75;
  mix-blend-mode: normal;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
}
.blob-1 {
  width: 46vw; height: 46vw;
  top: -10%; left: -8%;
  background: radial-gradient(circle at 30% 30%, var(--violet), transparent 70%);
  animation: float-a 26s ease-in-out infinite;
}
.blob-2 {
  width: 38vw; height: 38vw;
  top: 20%; right: -10%;
  background: radial-gradient(circle at 60% 40%, var(--rose), transparent 70%);
  animation: float-b 32s ease-in-out infinite;
}
.blob-3 {
  width: 30vw; height: 30vw;
  bottom: -12%; left: 30%;
  background: radial-gradient(circle at 50% 50%, var(--gold), transparent 70%);
  animation: float-c 22s ease-in-out infinite;
}

@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(6vw, 4vh) scale(1.12); }
  66%      { transform: translate(-3vw, 8vh) scale(0.95); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-7vw, 6vh) scale(1.15); }
}
@keyframes float-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(4vw, -6vh) scale(1.2); }
}

.stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 45% 60%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 85% 55%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 60% 85%, rgba(255,255,255,0.35), transparent);
  opacity: 0.8;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 160px 32px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 26px;
  opacity: 0;
  animation: rise 1s cubic-bezier(.2,.8,.2,1) 0.15s forwards;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: rgba(227,176,75,0.6);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--paper);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin: 0 0 26px;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) 0.3s forwards;
}
.hero h1 .accent-word {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-soft), var(--gold) 60%, var(--gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .sub {
  max-width: 620px;
  margin: 0 auto 44px;
  color: var(--dim);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  opacity: 0;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) 0.5s forwards;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 1.1s cubic-bezier(.2,.8,.2,1) 0.68s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-primary {
  background: linear-gradient(100deg, var(--gold-soft), var(--gold));
  color: #23180a;
  box-shadow: 0 10px 30px rgba(227,176,75,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(227,176,75,0.4); }
.btn-ghost {
  border: 1px solid rgba(245,243,238,0.25);
  color: var(--paper);
}
.btn-ghost:hover { background: rgba(245,243,238,0.08); transform: translateY(-2px); }

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

/* Mountain / summit silhouette — visual nod to the motto, gentle parallax */
.summit {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 26vh;
  min-height: 170px;
  margin-top: 60px;
}
.summit svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }
.layer-back   { opacity: 0.35; }
.layer-mid    { opacity: 0.55; }
.layer-front  { opacity: 0.9; }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 22px; height: 36px;
  border: 1.5px solid rgba(245,243,238,0.35);
  border-radius: 20px;
}
.scroll-cue::before {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  width: 4px; height: 8px;
  background: var(--gold-soft);
  border-radius: 3px;
  transform: translateX(-50%);
  animation: scrolldown 2s ease infinite;
}
@keyframes scrolldown {
  0%   { opacity: 0; top: 7px; }
  30%  { opacity: 1; }
  100% { opacity: 0; top: 20px; }
}

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: 130px 0; }
.kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9a7a2e;
  font-weight: 600;
  margin-bottom: 18px;
}
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 26px;
  color: var(--ink);
}
.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.2,1), transform 0.8s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* About */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: start;
}
.about-body p { font-size: 1.04rem; line-height: 1.8; color: var(--ink-soft); margin: 0 0 20px; }
.about-body strong { color: var(--ink); }

.credential-card {
  background: var(--navy);
  color: var(--paper);
  border-radius: 22px;
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
}
.credential-card .avatar {
  z-index: 1;
}
.credential-card .avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid var(--gold-soft);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  position: relative;
  margin-bottom: 20px;
  background: #0a0a0c;
}
.credential-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin: 0 0 6px;
  position: relative;
}
.credential-card .role {
  color: var(--gold-soft);
  font-size: 0.92rem;
  margin-bottom: 26px;
  position: relative;
}
.stat-row {
  display: flex;
  gap: 26px;
  position: relative;
  flex-wrap: wrap;
}
.stat { min-width: 110px; }
.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  color: var(--gold-soft);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat .label { font-size: 0.82rem; color: var(--dim); line-height: 1.3; }
.credential-divider {
  height: 1px;
  background: rgba(245,243,238,0.14);
  margin: 26px 0;
  position: relative;
}
.credential-card .project {
  font-size: 0.94rem;
  color: var(--dim);
  line-height: 1.6;
  position: relative;
}
.credential-card .project b { color: var(--paper); }

/* Services */
.services { background: var(--cream-2); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.service-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 34px 28px;
  border: 1px solid rgba(28,31,43,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(20,20,30,0.09);
}
.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: #23180a;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.service-card p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.65; margin: 0; }

/* Contact */
.contact {
  background: var(--navy);
  color: var(--paper);
  text-align: center;
}
.contact .section-title { color: var(--paper); }
.contact .lede { color: var(--dim); margin: 0 auto 40px; }
.contact-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.contact-detail {
  margin-top: 46px;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  color: var(--dim);
  font-size: 0.95rem;
}
.contact-detail div span { display: block; color: var(--gold-soft); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }

/* Footer */
.site-footer {
  background: #070a13;
  color: var(--dim);
  padding: 34px 0;
  font-size: 0.85rem;
  text-align: center;
}
.site-footer .brand { font-size: 1rem; margin-bottom: 8px; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .site-header nav { display: none; }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
  .contact-detail { gap: 24px; }
  .section-pad { padding: 90px 0; }
}
