/* REIGN Management — Brand Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0A0A0A;
  --gold:    #C9A94E;
  --gold-lt: #E2C97A;
  --white:   #FAFAFA;
  --gray-1:  #1A1A1A;
  --gray-2:  #2E2E2E;
  --gray-3:  #888888;
  --gray-4:  #C4C4C4;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; }

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

/* ─── Crown SVG ─────────────────────────────────────── */
.crown-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.crown-svg { flex-shrink: 0; }

/* ─── Navigation ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,78,0.15);
}
.navbar-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.navbar-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.navbar-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-4);
  transition: color 0.2s;
}
.navbar-links a:hover { color: var(--gold); }
.navbar-cta {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold);
  padding: 10px 22px;
  transition: background 0.2s, transform 0.2s;
}
.navbar-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_163857/924fdf69-1e1e-47c2-8896-73dc0eae61ae.jpg');
  background-size: cover;
  background-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 48px 80px;
  max-width: 760px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-title span { color: var(--gold); }
.hero-tagline {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--gray-4);
  margin-bottom: 40px;
  font-style: italic;
}
.hero-tagline strong {
  font-weight: 600;
  color: var(--white);
  font-style: normal;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,78,0.25); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid rgba(250,250,250,0.3);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ─── Section Shared ────────────────────────────────── */
.section { padding: 100px 48px; }
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-4);
  max-width: 520px;
  line-height: 1.7;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

/* ─── About ─────────────────────────────────────────── */
.about {
  background: var(--gray-1);
  border-top: 1px solid rgba(201,169,78,0.12);
  border-bottom: 1px solid rgba(201,169,78,0.12);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.about-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.about-image:hover img { filter: grayscale(0%); }
.about-image::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  right: -16px; bottom: -16px;
  border: 1px solid rgba(201,169,78,0.25);
  z-index: -1;
}
.about-text p {
  color: var(--gray-4);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.about-text p strong { color: var(--white); font-weight: 600; }
.about-pillars {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.pillar-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-3);
}

/* ─── Services ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.service-card {
  background: var(--gray-1);
  border: 1px solid rgba(201,169,78,0.08);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { border-color: rgba(201,169,78,0.3); background: var(--gray-2); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--gray-3);
  line-height: 1.7;
}

/* ─── Roster ─────────────────────────────────────────── */
.roster { background: var(--black); }
.roster-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.roster-header .section-sub { max-width: 400px; }
.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.model-card {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--gray-2);
  cursor: pointer;
}
.model-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.model-card:hover img { transform: scale(1.05); }
.model-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
}
.model-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.model-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.model-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,78,0.4);
  padding: 2px 8px;
}

/* ─── CTA Banner ─────────────────────────────────────── */
.cta-banner {
  background: var(--gray-1);
  border-top: 1px solid rgba(201,169,78,0.15);
  border-bottom: 1px solid rgba(201,169,78,0.15);
  text-align: center;
}
.cta-banner .section-heading { max-width: 600px; margin: 0 auto 12px; }
.cta-banner .section-sub { max-width: 480px; margin: 0 auto 40px; }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  padding: 64px 48px 32px;
  border-top: 1px solid rgba(201,169,78,0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-3);
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray-3);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,78,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,78,0.08);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray-3);
}
.footer-bottom a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--gold-lt); }

/* ─── Mobile Menu ───────────────────────────────────── */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
  padding: 4px;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .roster-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-height: 400px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 24px; }
  .navbar { padding: 16px 24px; }
  .navbar-links { display: none; }
  .mobile-toggle { display: block; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .about-pillars { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
  .roster-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}