:root {
  --accent: #c99a3d;
  --accent-dark: #0a0908;
  --ink: #f8fafc;
  --muted: #b6c0d0;
  --surface: #05070d;
  --card: #1b1d23;
  --line: rgba(255, 255, 255, .13);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--surface); }
body { margin: 0; color: var(--ink); background: var(--surface); font-size: 16px; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.site-header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 92px;
  padding: 10px clamp(20px, 4vw, 50px);
  background: var(--accent-dark);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header-brand { display: inline-flex; align-items: center; gap: 14px; margin-right: auto; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; flex: 0 0 auto; }
.brand-mark-image { width: 100%; height: 100%; object-fit: contain; border-radius: 0; }
.brand-copy { display: flex; flex-direction: column; justify-content: center; line-height: 1; letter-spacing: .13em; }
.brand-copy strong { font-size: 15px; font-weight: 800; }
.brand-copy small { margin-top: 5px; font-size: 9px; letter-spacing: .28em; }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.nav-link, .nav-link-button { padding: 11px 0; border: 0; background: transparent; font-size: 12px; font-weight: 750; letter-spacing: .08em; cursor: pointer; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 4px); left: -18px; min-width: 200px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #17120b; box-shadow: 0 20px 50px rgba(0,0,0,.28); }
.nav-dropdown-menu a { display: block; padding: 10px; border-radius: 7px; font-size: 13px; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,.08); }
.hire-button { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 5px; font-size: 12px; font-weight: 800; letter-spacing: .06em; }
.hire-button:hover { background: rgba(255,255,255,.12); }
.menu-button { display: none; width: 32px; padding: 4px 0; border: 0; background: transparent; cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 6px 0; background: white; }
.mobile-navigation { display: none; }

.hero { position: relative; display: flex; align-items: flex-end; min-height: min(620px, 72vh); overflow: hidden; background: var(--hero-image, radial-gradient(circle at 72% 22%, rgba(201,154,61,.3), transparent 35%), linear-gradient(135deg, #38270f, #050505 72%)); background-position: center 58%; background-size: cover; }
.hero--with-image { background-color: #050505; background-position: center 48%; background-repeat: no-repeat; background-size: 100% auto; }
.hero::before { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,13,.1), rgba(5,7,13,.98) 94%); content: ''; }
.hero--with-image::after { position: absolute; inset: 0; background: radial-gradient(ellipse 48% 34% at 92% 0%, rgba(5,7,13,1) 0%, rgba(5,7,13,.95) 55%, rgba(5,7,13,.7) 78%, transparent 100%); content: ''; pointer-events: none; }
.hero-content { position: relative; z-index: 1; width: min(1120px, 100%); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px) clamp(56px, 9vw, 104px); }
.hero-content p { margin: 0 0 14px; font-size: clamp(18px, 2vw, 22px); }
.hero-content h1 { max-width: 670px; margin: 0; font-size: clamp(44px, 6vw, 82px); line-height: .98; letter-spacing: -.045em; font-weight: 500; }

.support { width: min(1120px, 100%); margin: 0 auto; padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 64px) clamp(84px, 10vw, 140px); }
.support-heading { max-width: 640px; margin-bottom: 42px; }
.support-heading h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 48px); line-height: 1.06; letter-spacing: -.035em; font-weight: 500; }
.support-heading p { margin: 0; color: var(--muted); font-size: 18px; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 760px; margin: 0 auto; }
.contact-card { display: flex; flex-direction: column; min-height: 290px; padding: 30px 28px 26px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.045)); }
.contact-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-bottom: 34px; color: var(--accent); font-size: 32px; font-weight: 300; }
.contact-icon svg { display: block; width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.contact-icon--whatsapp svg { fill: currentColor; stroke: none; }
.contact-card h3 { margin: 0 0 14px; font-size: 14px; letter-spacing: .08em; }
.contact-card p { min-height: 84px; margin: 0 0 24px; color: var(--muted); font-size: 16px; line-height: 1.5; }
.contact-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: white; font-weight: 700; }
.contact-card a:hover { color: var(--accent); }

.site-footer { padding: 40px; background: #0e1118; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; width: min(1180px, 100%); margin: 0 auto 35px; padding-bottom: 0; }
.footer-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
.footer-logo { display: block; width: min(128px, 80vw); height: auto; border-radius: 6px; }
.footer-cta > a { color: #e6edff; font-size: 17px; font-weight: 700; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column h3 { margin: 0 0 9px; color: var(--muted); font-size: 12px; letter-spacing: .1em; }
.footer-column a { color: #e6edff; font-size: 15px; }
.footer-column a:hover, .footer-bottom a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; width: min(1180px, 100%); margin: 0 auto; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-bottom > div { display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 820px) {
  .site-header { min-height: 84px; padding: 8px 20px; }
  .desktop-nav, .hire-button { display: none; }
  .menu-button { display: block; }
  .mobile-navigation { position: relative; z-index: 4; display: flex; flex-direction: column; gap: 8px; padding: 8px 20px 18px; background: var(--accent-dark); }
  .mobile-navigation[hidden] { display: none; }
  .mobile-navigation > a, .mobile-services a { padding: 12px 0; font-size: 13px; font-weight: 750; letter-spacing: .06em; }
  .mobile-services { display: flex; flex-direction: column; padding-left: 15px; border-left: 1px solid rgba(255,255,255,.35); }
  .mobile-cta { margin-top: 8px; padding: 14px 16px !important; border: 1px solid rgba(255,255,255,.5); border-radius: 5px; }
  .hero { min-height: 570px; }
  .hero--with-image { min-height: 650px; background-position: center 50%; background-size: 100% auto; }
  .hero-content { padding-bottom: 64px; }
  .contact-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .contact-card { min-height: 250px; }
  .contact-card p { min-height: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (min-width: 1200px) {
  .hero--with-image { background-position: center 46%; }
}

@media (max-width: 540px) {
  .hero-content h1 { max-width: 360px; font-size: 48px; }
  .support { padding-top: 56px; }
  .support-heading h2 { font-size: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom > div { justify-content: flex-start; }
}
