/*
 * ═══════════════════════════════════════════════
 * LUMINARY — Theme CSS
 * Dark luxe: Deep navy · Electric amber · Cream
 * ═══════════════════════════════════════════════
 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500&display=swap');
/*
 * ── RESET & BASE ──
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

:root {
  --navy: #080f1f;
  --navy-mid: #0d1b36;
  --navy-light: #1a2f54;
  --amber: #f5a623;
  --amber-light: #ffc04a;
  --cream: #f5f0e8;
  --cream-dim: #c9c2b5;
  --white: white;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --section-pad: 120px 0;
  --container-max: 1200px; }

html {
  scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased; }

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

em {
  font-style: italic;
  color: var(--amber); }

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

/*
 * ── NAV ──
 */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(8, 15, 31, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15); }

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between; }

.nav-logo a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--white); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center; }

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  transition: color 0.2s; }

.nav-links a:hover {
  color: var(--white); }

.nav-links .nav-cta {
  background: var(--amber);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 500;
  transition: background 0.2s, transform 0.15s; }

.nav-links .nav-cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px); }

/*
 * ── HERO ──
 */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden; }

#hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none; }

.hero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  font-weight: 900;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 28px; }

.hero-sub {
  font-size: 19px;
  color: var(--cream-dim);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap; }

/*
 * ── MARQUEE ──
 */
.marquee-track {
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid rgba(245, 166, 35, 0.2);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
  padding: 18px 0; }

.marquee-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 18s linear infinite; }

.marquee-inner span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0 24px; }

.marquee-inner .dot {
  color: var(--amber);
  padding: 0 4px; }

@keyframes marquee {
    from {
    transform: translateX(0); }


    to {
    transform: translateX(-50%); }
 }
/*
 * ── BUTTONS ──
 */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s; }

.btn:hover {
  transform: translateY(-2px); }

.btn-primary {
  background: var(--white);
  color: var(--navy); }

.btn-primary:hover {
  background: var(--cream); }

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent; }

.btn-ghost:hover {
  border-color: var(--white); }

.btn-amber {
  background: var(--amber);
  color: var(--navy);
  font-weight: 500; }

.btn-amber:hover {
  background: var(--amber-light); }

/*
 * ── SHARED SECTION LAYOUT ──
 */
.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px; }

#services,
#work,
#about {
  padding: var(--section-pad); }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 64px; }

/*
 * ── SERVICES ──
 */
#services {
  background: var(--navy-mid); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px; }

.service-card {
  background: var(--navy);
  padding: 48px 44px;
  border: 1px solid rgba(245, 166, 35, 0.1);
  transition: border-color 0.3s, background 0.3s; }

.service-card:hover {
  border-color: rgba(245, 166, 35, 0.35);
  background: var(--navy-light); }

.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 20px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px; }

.service-card p {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.65; }

/*
 * ── WORK ──
 */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px; }

.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s, border-color 0.3s; }

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.3); }

.work-card--wide {
  grid-column: span 2; }

.work-card-img {
  height: 280px; }

.work-card--wide .work-card-img {
  height: 340px; }

.work-card-info {
  padding: 22px 26px; }

.work-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500; }

.work-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-top: 6px; }

/*
 * ── ABOUT ──
 */
#about {
  background: var(--navy-mid); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center; }

.about-text-col p {
  color: var(--cream-dim);
  margin-bottom: 20px;
  font-size: 16px; }

.about-text-col .btn {
  margin-top: 12px; }

.about-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1; }

.stat-label {
  font-size: 13px;
  color: var(--cream-dim);
  margin-top: 6px;
  letter-spacing: 0.02em; }

/*
 * ── CTA ──
 */
#cta {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden; }

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.07) 0%, transparent 65%); }

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative; }

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px; }

.cta-sub {
  font-size: 17px;
  color: var(--cream-dim);
  margin-bottom: 44px; }

/*
 * ── FOOTER ──
 */
#footer {
  background: #050c1a;
  border-top: 1px solid rgba(245, 166, 35, 0.15);
  padding: 80px 0 40px; }

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 48px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 60px;
  margin-bottom: 60px; }

.footer-col-title {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 18px; }

.footer-col ul {
  list-style: none; }

.footer-col ul li {
  margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--cream-dim);
  transition: color 0.2s; }

.footer-col ul li a:hover {
  color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px; }

.footer-bottom p {
  font-size: 13px;
  color: rgba(201, 194, 181, 0.5); }

/*
 * ── CONTENT PAGE ──
 */
.content-page {
  padding: 140px 0 100px;
  min-height: 60vh; }

.content-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px; }

.page-headline {
  margin-bottom: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(245, 166, 35, 0.2); }

.page-article h1,
.page-article h2,
.page-article h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 16px; }

.page-article p {
  color: var(--cream-dim);
  margin-bottom: 20px; }

/*
 * ── 404 ──
 */
.content-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 140px 0; }

.error-content {
  text-align: center; }

.error-num {
  font-family: var(--font-display);
  font-size: 140px;
  font-weight: 900;
  color: rgba(245, 166, 35, 0.15);
  line-height: 1;
  margin-bottom: 24px; }

/*
 * ── RESPONSIVE ──
 */
@media all and (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr; }

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

  .work-card--wide {
    grid-column: span 1; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px; }

  .nav-links {
    display: none; } }

@media all and (max-width: 600px) {
  .hero-headline {
    font-size: 40px; }

  .section-inner,
  .hero-inner,
  .cta-inner,
  .content-inner,
  .footer-inner {
    padding: 0 24px; }

  #services,
  #work,
  #about {
    padding: 80px 0; } }

