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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #1b1f27; /* SLATE BACKGROUND */
  color: #e2e8f0;            /* LIGHT COOL GREY */
  line-height: 1.6;
}

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

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

/* LAYOUT */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background-color: rgba(27, 31, 39, 0.95);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.container {
  width: min(1120px, 100% - 2rem);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
}

/* HEADER BRANDING */

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

.brand-logo {
  height: 124px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand-text {
  line-height: 1.15;
}

.brand-name {
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 1rem;
  color: #9aa3b2;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* NAV LINKS */

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links a {
  opacity: 0.78;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

main {
  padding: 3.5rem 0 3rem;
}

@media (max-width: 800px) {
  header {
    position: static;
  }
  .nav {
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
  }
  main {
    padding-top: 2.5rem;
  }
}

/* HERO (home only) */

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

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.4vw + 1.4rem, 3.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h1 span {
  background: linear-gradient(120deg, #ffb02e, #f97316, #fb7185);
  -webkit-background-clip: text;
  color: transparent;
}

.tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 1.4rem;
}

.hero p {
  max-width: 32rem;
  color: #cbd5e1;
  margin-bottom: 1.8rem;
}

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

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* PRIMARY BUTTON – AMBER ACCENT */

.btn-primary {
  background-color: #ffb02e;
  color: #1b1f27;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #ffc860;
}

/* GHOST BUTTON */

.btn-ghost {
  background: rgba(15, 23, 42, 0);
  border-color: #64748b;
  color: #cbd5e1;
}

.btn-ghost:hover {
  border-color: #e2e8f0;
  color: #e2e8f0;
}

.hero-meta {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ABOUT SECTION */

.about {
  border-top: 1px solid rgba(51, 65, 85, 0.9);
  padding: 3.5rem 0 3.5rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2rem;
  align-items: center;
}

@media (max-width: 800px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}

.about-photo-wrap {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.about h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.about p {
  color: #cbd5e1;
  margin-bottom: 0.9rem;
}

/* GENERIC SECTIONS */

.page-header {
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 2.1rem;
  margin-bottom: 0.4rem;
}

.page-header p {
  color: #9ca3af;
  max-width: 38rem;
}

section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.lead {
  color: #9ca3af;
  max-width: 32rem;
  margin-bottom: 1.6rem;
}

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

.card {
  background: rgba(15, 23, 42, 0.94);
  border-radius: 18px;
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: #e2e8f0;
}

.card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

/* PROJECT LIST */

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

.project-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

/* CONTACT */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 2rem;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.contact-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 0.35rem;
  column-gap: 0.75rem;
  font-size: 0.9rem;
  margin-top: 0.4rem;
}

.contact-card dt {
  color: #9ca3af;
}

.contact-card dd a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(51, 65, 85, 0.9);
  padding: 1.4rem 0 1.6rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

footer span {
  opacity: 0.9;
}

/* SMOOTH SCROLL */

html {
  scroll-behavior: smooth;
}

/* ============================================
   NAVY / GREY THEME OVERRIDE
   ============================================ */

/* GLOBAL */
body {
  background-color: #0c1320;    /* deep navy */
  color: #e5e7eb;               /* light grey text */
}

header {
  background-color: rgba(12, 19, 32, 0.94);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

/* HERO */
.eyebrow {
  color: #8fa3c6;
}

.hero h1 span {
  background: linear-gradient(120deg, #4dc5ff, #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  color: #cbd5e1;
}

.hero-meta {
  color: #94a3b8;
}

/* BUTTONS */
.btn-primary {
  background-color: #3ba6ff;   /* blue accent */
  color: #0c1320;
}

.btn-primary:hover {
  background-color: #66bfff;
}

.btn-ghost {
  border-color: #66768f;
  color: #cfd5e1;
}

.btn-ghost:hover {
  border-color: #dbe4ef;
  color: white;
}

/* ABOUT SECTION */
.about {
  border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.about-photo {
  border: 3px so


