/* Innovek Consulting Ltd — site styles */

:root {
  --navy: #14283D;
  --navy-light: #1d3a56;
  --gold: #C89B3C;
  --gold-light: #ddb862;
  --teal: #1F6F78;
  --cream: #F7F5F1;
  --ink: #22201c;
  --paper: #FFFFFF;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
  display: block;
}

section { padding: 96px 0; }

@media (max-width: 700px) {
  section { padding: 64px 0; }
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 40, 61, 0.92);
}

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

.brand { display: flex; align-items: center; }
.brand img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.15s ease;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: 600 !important;
  opacity: 1 !important;
}

.nav-cta:hover { background: var(--gold-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 40, 61, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 8px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    width: 100%;
  }

  .nav-cta { margin: 8px 24px 16px; display: inline-block; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/web/hero-taranaki.jpg') center 65% / cover no-repeat;
  padding-top: 72px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,40,61,0.55) 0%, rgba(20,40,61,0.35) 45%, rgba(20,40,61,0.75) 100%);
}

.hero .wrap { position: relative; z-index: 1; }

.hero-content { max-width: 640px; }

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.5px;
}

.hero p {
  color: rgba(255,255,255,0.92);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 0 2em;
}

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ---------- About ---------- */

.about { background: var(--cream); }

.about .grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px -16px rgba(20,40,61,0.35);
}

.about figure img { width: 100%; height: 100%; object-fit: cover; }

.about h2 { font-size: 1.9rem; color: var(--navy); }

.about p { font-size: 1.02rem; color: #4a463f; }

@media (max-width: 820px) {
  .about .grid { grid-template-columns: 1fr; gap: 32px; }
  .about figure { max-width: 420px; }
}

/* ---------- Services ---------- */

.services { background: var(--paper); }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 { font-size: 1.9rem; color: var(--navy); }
.section-head p { color: #5a564d; font-size: 1.05rem; margin: 0 0 1em; text-align: left; }
.section-head p:last-child { margin-bottom: 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--cream);
  border-radius: 6px;
  padding: 32px 26px;
  border-top: 3px solid var(--teal);
}

.card .num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.card h3 {
  color: var(--navy);
  font-size: 1.12rem;
  margin: 14px 0 10px;
}

.card p {
  font-size: 0.95rem;
  color: #5a564d;
  margin: 0;
}

/* ---------- Approach banner ---------- */

.approach {
  position: relative;
  background: url('../images/web/summit-sunrise.jpg') center 60% / cover no-repeat;
  padding: 130px 0;
  text-align: center;
}

.approach::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,40,61,0.6), rgba(20,40,61,0.72));
}

.approach .wrap { position: relative; z-index: 1; }

.approach .eyebrow { color: var(--gold-light); }

.approach p {
  margin: 0 auto 1.2em;
  max-width: 680px;
  color: rgba(255,255,255,0.94);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
}

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

/* ---------- Experience strip ---------- */

.experience { background: var(--navy); color: #fff; }

.experience .grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.experience figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
}

.experience figure img { width: 100%; }

.experience h2 { color: #fff; font-size: 1.7rem; }
.experience p { color: rgba(255,255,255,0.82); }

.highlights-label {
  display: block;
  margin-top: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.highlight-list li {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: #fff;
}

@media (max-width: 820px) {
  .experience .grid { grid-template-columns: 1fr; gap: 28px; }
  .experience figure { max-width: 380px; }
}

/* ---------- Contact ---------- */

.contact { background: var(--paper); text-align: center; }

.contact h2 { color: var(--navy); font-size: 1.9rem; }

.contact p.lead {
  max-width: 560px;
  margin: 0 auto 36px;
  color: #5a564d;
  font-size: 1.05rem;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.form-row { margin-bottom: 20px; }

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(20,40,61,0.2);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: #fff;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.contact-form .btn { width: 100%; cursor: pointer; border: none; }
.contact-form .btn:disabled { opacity: 0.6; cursor: default; }

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  font-size: 0.92rem;
  text-align: center;
}

.form-status.success { color: var(--teal); }
.form-status.error { color: #b3402a; }

.contact-linkedin {
  margin: 28px 0 0;
  font-size: 0.95rem;
  color: #5a564d;
}

.contact-linkedin a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

/* ---------- Footer ---------- */

footer {
  background: var(--navy);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer img { height: 32px; }

footer .copy {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}
