/* TITAN — dark + gold (v1), softened: charcoal/slate, not near-black */

:root {
  --bg-deep: #1a2230;
  --bg-mid: #222c3d;
  --bg-panel: #283548;
  --section-band: #232f42;
  --accent: #d4a527;
  --accent-dim: #b8922a;
  --text: #ffffff;
  --text-muted: #ffffff;
  --border: rgba(148, 163, 184, 0.16);
  --radius: 12px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: -0.011em;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #1a1a1a;
  font-weight: 700;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 34, 48, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-link:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, filter 0.2s;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, #e8c54a 0%, var(--accent) 45%, var(--accent-dim) 100%);
  color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  text-decoration: none;
}

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

.btn-ghost:hover {
  border-color: rgba(212, 165, 39, 0.45);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 1.25rem 1rem;
  background: rgba(26, 34, 48, 0.98);
  border-bottom: 1px solid var(--border);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  color: var(--text);
  padding: 0.75rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.nav-mobile a:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

.hero {
  position: relative;
  padding: 3.5rem 1.25rem 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 72% 0%, rgba(212, 165, 39, 0.12), transparent),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 100%);
  z-index: -1;
}

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

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-highlight {
  color: var(--accent);
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.stat strong {
  display: block;
  color: var(--accent);
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}

.stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

section {
  padding: 4rem 1.25rem;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

section h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
}

.section-alt {
  background: var(--section-band);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cards {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

/* Services: four cards in one row on large screens */
#services .cards {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  #services .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Why us: three cards evenly across */
#why-us .cards {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  #why-us .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  #why-us .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.card:hover {
  border-color: rgba(212, 165, 39, 0.4);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 165, 39, 0.14);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

/* About: balance columns; checklist centered in right column */
#about .split {
  align-items: center;
}

#about .split > div:last-child {
  display: flex;
  justify-content: center;
  width: 100%;
}

#about .list-check {
  margin: 0;
  width: fit-content;
  max-width: 100%;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.prose p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}

#about .list-check li {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
  padding-left: 0;
  text-align: left;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

#about .list-check li::before {
  position: static;
  flex-shrink: 0;
  margin-top: 0.12em;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-box {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-box h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--text);
}

.contact-box p,
.contact-box address {
  margin: 0;
  font-style: normal;
  color: var(--text-muted);
  white-space: pre-line;
}

.contact-box a {
  word-break: break-all;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 240px;
  background: var(--bg-panel);
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  background: #151b26;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}
