:root {
  --navy-900: #021d2b;
  --navy-800: #032231;
  --navy-700: #04293b;
  --navy-600: #0a3a52;
  --navy-border: #14506e;
  --ink: #1e1e1e;
  --text-light: #eaf4f9;
  --text-muted: #9fc4d6;
  --chip-text: #bfe3f2;
  --orange: #fe8a00;
  --cyan: #00add3;
  --max-width: 1060px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--navy-700);
  color: var(--text-light);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.25; margin: 0 0 0.5em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 2.7rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 600; }
h3 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; }

a { color: var(--cyan); }
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.site-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.brand { flex-shrink: 0; display: flex; }
.brand img { width: 164px; height: auto; }

.site-nav {
  display: flex;
  gap: 1.4rem;
  margin-left: auto;
}

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

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

.phone-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

main { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

.hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
}

.hero-art {
  position: absolute;
  right: -4rem;
  top: 0;
  width: min(420px, 44%);
  height: auto;
  opacity: 0.92;
  pointer-events: none;
}

.hero-copy { position: relative; max-width: 560px; }

.lede {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 9px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary { background: var(--orange); color: var(--ink); }
.btn-primary:hover { background: #ff9d26; }
.btn-primary:disabled { opacity: 0.6; cursor: default; }

.btn-ghost {
  border: 1px solid var(--navy-border);
  color: var(--text-light);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--cyan); }

.chips {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 2.2rem 0 0;
}

.chips li {
  background: var(--navy-600);
  border: 1px solid var(--navy-border);
  color: var(--chip-text);
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.section { padding: 3rem 0; }

.section-alt {
  position: relative;
  padding: 3rem 1.75rem;
  margin: 0 -1.75rem;
  background: var(--navy-800);
  border-top: 1px solid var(--navy-600);
  border-bottom: 1px solid var(--navy-600);
}

.kicker {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.section-lede { color: var(--text-muted); max-width: 560px; }

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--navy-600);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1.4rem;
}

.card h3 { color: var(--orange); }
.card p { color: var(--text-muted); margin: 0; }

.mini-services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding: 0;
  margin: 1rem 0 0;
}

.mini-services li {
  background: var(--navy-600);
  border: 1px solid var(--navy-border);
  color: var(--chip-text);
  border-radius: 9px;
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0;
  margin: 1.5rem 0 0;
}

.steps li { counter-increment: step; }

.steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

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

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.work-grid figure { margin: 0; }

.work-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--navy-border);
}

.work-grid figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.about {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.about p { color: var(--text-muted); max-width: 640px; margin: 0; }
.about strong { color: var(--text-light); }

.avatar {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange);
}

.contact-card {
  background: #ffffff;
  color: var(--ink);
  border-radius: 12px;
  padding: 1.5rem;
  max-width: 720px;
  margin-top: 1.5rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.field { display: flex; flex-direction: column; gap: 0.25rem; margin: 0 0 0.9rem; }
.field-grid .field { margin: 0; }
.field-grid { margin-bottom: 0.9rem; }

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3c3c3c;
}

.req { color: #c2410c; }

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid #d0d0cc;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  width: 100%;
}

.field textarea { resize: vertical; }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-status { margin: 0; font-size: 0.9rem; color: #3c3c3c; flex: 1; }
.form-success { margin: 0; font-weight: 500; }

.alt-contact { color: var(--text-muted); margin-top: 1rem; font-size: 0.95rem; }
.alt-contact a { color: var(--orange); }

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--navy-600);
  background: var(--navy-900);
  margin-top: 1rem;
}

.site-footer { max-width: none; }
.site-footer p { margin: 0; font-size: 0.85rem; color: #6e93a6; }
.site-footer a { color: #6e93a6; }

@media (max-width: 760px) {
  .site-nav { display: none; }
  .hero-art { display: none; }
  .hero-copy { max-width: none; }
  .card-grid, .field-grid { grid-template-columns: 1fr; }
  .mini-services, .steps, .work-grid { grid-template-columns: 1fr; }
  .about { flex-direction: column; }
}
