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

:root {
  --bg: #050505;
  --bg-alt: #0d0d0d;
  --card: #111111;
  --card-alt: #151515;
  --gold: #d4af37;
  --gold-soft: #f1d98a;
  --text: #f7f7f7;
  --muted: #9b9b9b;
  --border: #262626;
  --accent: #ffffff;
  --radius: 14px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
}

html, body {
  background: radial-gradient(circle at top, #1c1405 0, #050505 50%);
  color: var(--text);
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-shield {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.5);
  font-size: 1rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo-main {
  font-weight: 600;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.3rem;
}

.nav-links a {
  font-size: 0.86rem;
  text-decoration: none;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #ffffff);
  transition: width 0.2s ease-out;
}

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

.nav-links a:hover::after {
  width: 80%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 10px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* HERO */

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.highlight {
  color: var(--gold);
}

.hero-text {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out, color 0.12s;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.btn.fullwidth {
  width: 100%;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), #f8f0c2);
  color: #111111;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.btn.secondary {
  background: var(--card-alt);
  color: var(--text);
  border-color: var(--border);
}

.btn.secondary:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(212, 175, 55, 0.4);
}

.btn.ghost:hover {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

.hero-meta {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.meta-number {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

.meta-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), #050505 55%);
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-soft);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  padding: 0.25rem 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.hero-card-text {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.hero-list {
  list-style: none;
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
}

.hero-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

/* SECTIONS */

.section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 34rem;
}

/* ABOUT */

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.about-text p {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.about-stat {
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.stat-value {
  font-size: 0.9rem;
  font-weight: 500;
}

.about-card {
  background: var(--card);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.about-card h3 {
  margin-bottom: 0.8rem;
}

.checklist {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.checklist li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.8rem;
  color: var(--gold);
}

/* SERVICES */

.services {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), #050505 55%);
}

.service-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--border);
}

.service-card h3 {
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.service-card ul {
  list-style: none;
  font-size: 0.84rem;
  color: var(--muted);
}

.service-card li {
  margin-bottom: 0.3rem;
}

/* PRICING */

.pricing {
  background: #050505;
}

.pricing-grid {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.pricing-card {
  background: var(--card);
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.pricing-card.featured {
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
}

.pricing-card .badge {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-card .badge.gold {
  color: var(--gold-soft);
}

.pricing-card h3 {
  font-size: 1.4rem;
}

.pricing-card h3 span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 0.1rem;
}

.pricing-card ul {
  list-style: none;
  font-size: 0.86rem;
  color: var(--muted);
}

.pricing-card li {
  margin-bottom: 0.35rem;
}

/* PORTFOLIO */

.portfolio {
  background: #050505;
}

.portfolio-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.portfolio-card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  border: 1px solid var(--border);
}

.portfolio-card h3 {
  margin-bottom: 0.4rem;
}

.portfolio-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}

.portfolio-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* PROCESS */

.process {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.05), #050505 60%);
}

.process-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.2rem;
}

.process-step {
  background: var(--card);
  border-radius: 16px;
  padding: 1rem 1rem;
  border: 1px solid var(--border);
}

.step-number {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 0.2rem;
}

.process-step h3 {
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: 0.86rem;
  color: var(--muted);
}

/* CONTACT */

.contact {
  background: #050505;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 2.5fr);
  gap: 2rem;
  align-items: flex-start;
}

.contact-text p {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.contact-details {
  list-style: none;
  font-size: 0.88rem;
  color: var(--muted);
}

.contact-details li {
  margin-bottom: 0.35rem;
}

.contact-details a {
  color: var(--gold-soft);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--card);
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.7rem;
}

.form-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

input,
select,
textarea {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-alt);
  color: var(--text);
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.86rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.5rem;
  font-size: 0.76rem;
  color: var(--muted);
}

/* FOOTER */

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  padding: 1.2rem 0 1.6rem;
  background: #050505;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-sub {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .about-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset: 64px 0 auto 0;
    background: rgba(5, 5, 5, 0.97);
    flex-direction: column;
    padding: 0.8rem 1.5rem 1rem;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.16s ease-out, opacity 0.16s ease-out;
  }

  .nav-links.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(3px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-3px) rotate(-45deg);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 3.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
