:root {
  --ink: #10233f;
  --navy: #062e69;
  --evergreen: #073a78;
  --teal: #0f65a9;
  --blue: #67aaf3;
  --cream: #f8fbff;
  --paper: #edf5ff;
  --white: #ffffff;
  --gold: #63ad55;
  --red: #31883c;
  --muted: #58708c;
  --line: rgba(6, 46, 105, 0.15);
  --shadow: 0 18px 45px rgba(6, 46, 105, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(23, 35, 34, 0.08);
}

.utility-bar {
  background: var(--evergreen);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-inner span {
  white-space: nowrap;
}

.nav-shell {
  position: relative;
  background: rgba(255, 248, 234, 0.96);
  backdrop-filter: blur(14px);
}

.nav-inner {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: clamp(320px, 27vw, 370px);
  max-width: 34vw;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(6, 46, 105, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.nav-links a:not(.nav-phone):hover,
.nav-links a:not(.nav-phone):focus-visible {
  color: var(--navy);
  background: #edf5ff;
  border-color: rgba(15, 101, 169, 0.28);
  box-shadow: 0 10px 22px rgba(6, 46, 105, 0.12);
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  color: var(--white);
  background: linear-gradient(135deg, var(--evergreen), var(--teal));
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(6, 46, 105, 0.18);
}

.nav-links .nav-phone {
  padding: 10px 16px;
  background: linear-gradient(135deg, var(--evergreen), #31883c);
  color: var(--cream);
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(49, 136, 60, 0.22);
}

.nav-links .nav-phone:hover,
.nav-links .nav-phone:focus-visible {
  background: linear-gradient(135deg, var(--teal), var(--evergreen));
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 24, 54, 0.97) 0%, rgba(4, 34, 74, 0.88) 39%, rgba(4, 34, 74, 0.48) 70%, rgba(4, 34, 74, 0.18) 100%),
    url("assets/secure-web-it-hero.png") center right / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(103, 170, 243, 0.18) 0%, rgba(103, 170, 243, 0) 33%),
    linear-gradient(0deg, rgba(6, 46, 105, 0.28), rgba(6, 46, 105, 0));
}

.hero-content {
  padding: 44px 0 48px;
  color: var(--cream);
}

.hero-content > * {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: 70px;
  color: var(--cream);
}

h2 {
  margin-bottom: 18px;
  font-size: 48px;
}

h3 {
  margin-bottom: 14px;
  font-size: 27px;
}

.hero-statement {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1.12;
  color: var(--white);
}

.hero-copy {
  margin-bottom: 28px;
  color: rgba(255, 248, 234, 0.88);
  font-size: 19px;
  max-width: 610px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(49, 136, 60, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #256f2e;
}

.button-secondary {
  border: 1px solid rgba(255, 248, 234, 0.58);
  color: var(--cream);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--cream);
  background: rgba(255, 248, 234, 0.1);
}

.button-secondary.light {
  border-color: rgba(23, 35, 34, 0.2);
  color: var(--ink);
  background: rgba(255, 248, 234, 0.72);
}

.signal-strip {
  background: linear-gradient(90deg, #dff1e1 0%, #edf5ff 56%, #dcecff 100%);
  color: var(--ink);
  border-top: 1px solid rgba(6, 46, 105, 0.12);
  border-bottom: 1px solid rgba(6, 46, 105, 0.12);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 18px 0;
}

.signal-grid div {
  display: grid;
  gap: 2px;
}

.signal-grid strong {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--navy);
}

.signal-grid span {
  font-size: 14px;
}

.section-pad {
  padding: 92px 0;
}

.intro-section {
  background: var(--cream);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 56px;
  align-items: start;
}

.intro-layout p:last-child {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-intro {
  color: var(--muted);
  font-size: 19px;
  max-width: 720px;
}

.section-link {
  display: inline-block;
  margin-top: 26px;
}

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

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

.service-card {
  position: relative;
  min-height: 100%;
  padding: 32px;
  background: var(--white);
  border: 1px solid rgba(23, 35, 34, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card.featured {
  background: var(--evergreen);
  color: var(--cream);
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 248, 234, 0.82);
}

.service-card.featured .text-link {
  color: var(--gold);
}

.icon-tile {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
}

.icon-tile svg {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  position: relative;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 24px;
  padding-left: 20px;
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

.text-link::after {
  content: " ->";
}

.web-band {
  background: var(--evergreen);
  color: var(--cream);
}

.web-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.web-layout p {
  color: rgba(255, 248, 234, 0.82);
  font-size: 19px;
}

.mock-browser {
  padding: 18px;
  background: #102f39;
  border: 1px solid rgba(255, 248, 234, 0.16);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.mock-top {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.mock-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.mock-top span:nth-child(2) {
  background: var(--red);
}

.mock-top span:nth-child(3) {
  background: var(--blue);
}

.mock-hero {
  height: 210px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 30px;
  background: linear-gradient(135deg, #fff8ea 0%, #dbeef3 100%);
  border-radius: 6px;
}

.mock-hero div {
  height: 12px;
  max-width: 72%;
  background: var(--teal);
  border-radius: 999px;
}

.mock-hero div:nth-child(1) {
  width: 44%;
  background: var(--red);
}

.mock-hero div:nth-child(2) {
  height: 46px;
  width: 84%;
  background: var(--navy);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.mock-cards span {
  height: 86px;
  background: rgba(255, 248, 234, 0.12);
  border: 1px solid rgba(255, 248, 234, 0.14);
  border-radius: 6px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.check-list span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 248, 234, 0.18);
  border-radius: 6px;
  color: var(--cream);
  font-weight: 800;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-grid article {
  padding: 28px;
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.process-grid span {
  color: var(--red);
  font-weight: 900;
}

.process-grid p {
  color: var(--muted);
}

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

.audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.audience-layout p {
  color: var(--muted);
  font-size: 19px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.audience-grid span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(23, 35, 34, 0.12);
  border-radius: 8px;
  color: var(--evergreen);
  font-weight: 900;
}

.repair-note {
  background: var(--ink);
  color: var(--cream);
}

.repair-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
}

.repair-inner strong {
  color: var(--gold);
}

.repair-inner span {
  color: rgba(255, 248, 234, 0.78);
}

.repair-inner a {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cta {
  background:
    linear-gradient(90deg, rgba(6, 46, 105, 0.96), rgba(15, 101, 169, 0.88)),
    var(--evergreen);
  color: var(--cream);
}

.cta-inner {
  max-width: 860px;
  text-align: center;
}

.cta-inner .hero-actions {
  justify-content: center;
}

.cta-inner p {
  color: rgba(255, 248, 234, 0.82);
}

.site-footer {
  background: #041836;
  color: var(--cream);
  padding: 30px 0;
}

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

.footer-brand {
  background: var(--white);
  padding: 8px 10px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(255, 248, 234, 0.78);
  font-size: 14px;
}

.footer-links a {
  color: var(--cream);
  font-weight: 800;
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 24, 54, 0.97) 0%, rgba(4, 34, 74, 0.9) 44%, rgba(4, 34, 74, 0.46) 100%),
    url("assets/secure-web-it-hero.png") center right / cover no-repeat;
  color: var(--cream);
}

.subpage-hero-inner {
  min-height: 430px;
  display: grid;
  align-content: center;
  padding: 58px 0;
}

.subpage-hero-inner > * {
  max-width: 720px;
}

.subpage-hero h1 {
  color: var(--cream);
}

.subpage-hero p:not(.eyebrow) {
  color: rgba(248, 251, 255, 0.86);
  font-size: 20px;
}

.detail-section {
  background: var(--cream);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: start;
}

.detail-main > p {
  color: var(--muted);
  font-size: 19px;
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.mini-card {
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(6, 46, 105, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-card p {
  color: var(--muted);
}

.detail-aside {
  padding: 28px;
  background: var(--evergreen);
  color: var(--cream);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-aside h2 {
  font-size: 32px;
}

.check-list-light {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list-light li {
  padding-left: 28px;
  position: relative;
  color: rgba(248, 251, 255, 0.86);
}

.check-list-light li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.page-band {
  background: var(--paper);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
}

.split-band p:last-child {
  color: var(--muted);
  font-size: 20px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline article {
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(6, 46, 105, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.timeline span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.timeline p {
  color: var(--muted);
}

.contact-hero .subpage-hero-inner {
  min-height: 360px;
}

.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(6, 46, 105, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-heading,
.field-full,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.form-heading p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
  pointer-events: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(6, 46, 105, 0.18);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(103, 170, 243, 0.22);
}

.form-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  background: #dff1e1;
  color: #174f20;
  border: 1px solid rgba(49, 136, 60, 0.24);
}

.form-status.is-error {
  background: #fff1f0;
  color: #8a231c;
  border: 1px solid rgba(138, 35, 28, 0.18);
}

.contact-aside {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: var(--evergreen);
  color: var(--cream);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-aside h2,
.contact-aside h3,
.contact-aside p {
  margin-bottom: 0;
}

.contact-aside p,
.contact-aside li {
  color: rgba(248, 251, 255, 0.82);
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a,
.response-card {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(248, 251, 255, 0.1);
  border: 1px solid rgba(248, 251, 255, 0.16);
  border-radius: 8px;
}

.contact-methods span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-methods strong {
  color: var(--white);
}

.response-card ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 20px;
}

.portfolio-preview {
  background: var(--cream);
}

.portfolio-preview-link {
  margin-top: 30px;
}

.portfolio-hero {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(4, 24, 54, 0.98) 0%, rgba(6, 46, 105, 0.94) 44%, rgba(49, 136, 60, 0.82) 100%),
    var(--evergreen);
  color: var(--cream);
}

.portfolio-hero-inner {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 68px 0;
}

.portfolio-hero-copy > * {
  max-width: 620px;
}

.portfolio-hero h1,
.case-hero h1 {
  color: var(--cream);
}

.portfolio-hero p:not(.eyebrow),
.case-hero p:not(.eyebrow) {
  color: rgba(248, 251, 255, 0.86);
  font-size: 20px;
}

.portfolio-hero-stack {
  position: relative;
  min-height: 500px;
}

.browser-frame {
  padding: 12px;
  background: #061d37;
  border: 1px solid rgba(248, 251, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.browser-bar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.browser-bar span:nth-child(2) {
  background: var(--gold);
}

.browser-bar span:nth-child(3) {
  background: var(--blue);
}

.browser-frame img {
  width: 100%;
  aspect-ratio: 9 / 11;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  background: var(--white);
}

.frame-cajun {
  width: min(430px, 88%);
  margin-left: auto;
  transform: rotate(2deg);
}

.frame-lhcc {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: min(340px, 68%);
  transform: rotate(-4deg);
}

.frame-kiosk {
  position: absolute;
  right: 0;
  bottom: 36px;
  width: min(360px, 72%);
  transform: rotate(-2deg);
}

.frame-kiosk img {
  aspect-ratio: 16 / 10;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.work-card {
  display: grid;
  background: var(--white);
  border: 1px solid rgba(6, 46, 105, 0.12);
  border-top: 6px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.work-card.accent-cajun {
  border-top-color: #e94a2c;
}

.work-card.accent-software {
  border-top-color: var(--teal);
}

.work-shot {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #061d37;
}

.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease;
}

.work-card:hover .work-shot img,
.work-card:focus-within .work-shot img {
  transform: scale(1.035);
}

.work-card-body {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.work-card-body h3,
.work-card-body p {
  margin-bottom: 0;
}

.work-card-body p {
  color: var(--muted);
}

.work-type {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.accent-cajun .work-type {
  color: #c83a22;
}

.accent-software .work-type {
  color: var(--teal);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0;
}

.tag-row span {
  padding: 6px 10px;
  background: var(--paper);
  color: var(--navy);
  border: 1px solid rgba(6, 46, 105, 0.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.case-hero {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(125deg, rgba(4, 24, 54, 0.98) 0%, rgba(6, 46, 105, 0.92) 52%, rgba(49, 136, 60, 0.78) 100%),
    var(--evergreen);
}

.case-cajun .case-hero {
  background:
    repeating-linear-gradient(90deg, rgba(255, 207, 0, 0.07) 0 2px, transparent 2px 92px),
    linear-gradient(125deg, rgba(4, 24, 54, 0.98) 0%, rgba(10, 65, 57, 0.94) 54%, rgba(233, 74, 44, 0.82) 100%),
    #0b3b33;
}

.case-cajun .case-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 46%, rgba(255, 207, 0, 0.12) 46% 47%, transparent 47%),
    linear-gradient(150deg, transparent 0 66%, rgba(143, 53, 183, 0.16) 66% 68%, transparent 68%);
  pointer-events: none;
}

.case-cajun .case-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, #ffcf00 0 90px, #f11615 90px 180px, #0dae3f 180px 270px, #8f35b7 270px 360px);
  background-size: 360px 100%;
  animation: cajunStripe 18s linear infinite;
}

.case-kiosk .case-hero {
  background:
    linear-gradient(125deg, rgba(4, 24, 54, 0.98) 0%, rgba(6, 64, 98, 0.94) 52%, rgba(49, 136, 60, 0.78) 100%),
    var(--evergreen);
}

.case-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 54px;
  align-items: center;
  padding: 68px 0;
}

.case-cajun .case-hero-inner {
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 1.16fr);
}

.case-hero-copy > * {
  max-width: 680px;
}

.case-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.case-meta-strip span {
  padding: 9px 12px;
  background: rgba(248, 251, 255, 0.1);
  border: 1px solid rgba(248, 251, 255, 0.18);
  border-radius: 999px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-cajun .case-meta-strip span {
  animation: cajunRise 620ms ease both;
}

.case-cajun .case-meta-strip span:nth-child(1) {
  background: #ffcf00;
  color: #211500;
  border-color: rgba(255, 207, 0, 0.72);
}

.case-cajun .case-meta-strip span:nth-child(2) {
  animation-delay: 90ms;
  background: #f11615;
  border-color: rgba(241, 22, 21, 0.72);
}

.case-cajun .case-meta-strip span:nth-child(3) {
  animation-delay: 180ms;
  background: rgba(13, 174, 63, 0.24);
  border-color: rgba(13, 174, 63, 0.55);
}

.case-browser {
  justify-self: end;
  width: min(410px, 100%);
  transform: rotate(1.5deg);
}

.case-lhcc .case-browser {
  transform: rotate(-1.5deg);
}

.cajun-showcase {
  position: relative;
  min-height: 560px;
}

.cajun-showcase .browser-frame {
  background: #11150f;
  border-color: rgba(255, 207, 0, 0.28);
}

.cajun-showcase .browser-frame img {
  aspect-ratio: 16 / 10;
}

.cajun-screen-main {
  width: min(650px, 100%);
  margin-left: auto;
  transform: rotate(1.6deg);
  animation: cajunFloat 7s ease-in-out infinite;
}

.cajun-screen-gumbo {
  position: absolute;
  right: 3%;
  bottom: 18px;
  z-index: 2;
  width: min(430px, 58%);
  transform: rotate(-3deg);
  animation: cajunFloatGumbo 8s ease-in-out infinite 420ms;
}

.cajun-mobile-shot {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: min(178px, 25%);
  padding: 10px;
  background: #101811;
  border: 1px solid rgba(255, 207, 0, 0.28);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  transform: rotate(-5deg);
  animation: cajunMobileFloat 8.5s ease-in-out infinite 700ms;
}

.cajun-mobile-shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}

.cajun-badge {
  position: absolute;
  top: 8px;
  right: 8%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  background: #ffcf00;
  color: #211500;
  border: 2px solid #f11615;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(3deg);
  animation: cajunBadgePulse 3.8s ease-in-out infinite;
}

.software-hero-inner {
  grid-template-columns: minmax(0, 0.88fr) minmax(390px, 1.12fr);
}

.software-device-stack {
  position: relative;
  min-height: 430px;
}

.software-browser {
  width: min(620px, 100%);
  margin-left: auto;
  transform: rotate(1.2deg);
}

.software-browser img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.phone-frame {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: min(190px, 34%);
  padding: 10px;
  background: #061d37;
  border: 1px solid rgba(248, 251, 255, 0.16);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
}

.case-band {
  background: var(--paper);
}

.cajun-style-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 207, 0, 0.08), rgba(255, 207, 0, 0)),
    #fff6e4;
}

.cajun-style-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(241, 22, 21, 0.06) 0 2px, transparent 2px 28px),
    linear-gradient(90deg, transparent 0%, rgba(13, 174, 63, 0.09) 100%);
  pointer-events: none;
}

.cajun-style-section .container {
  position: relative;
  z-index: 1;
}

.cajun-style-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cajun-style-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 46, 105, 0.12);
  border-top: 6px solid #ffcf00;
  border-radius: 8px;
  box-shadow: var(--shadow);
  animation: cajunRise 700ms ease both;
}

.cajun-style-card:nth-child(2) {
  animation-delay: 110ms;
  border-top-color: #f11615;
}

.cajun-style-card:nth-child(3) {
  animation-delay: 220ms;
  border-top-color: #0dae3f;
}

.cajun-style-card:nth-child(4) {
  animation-delay: 330ms;
  border-top-color: #8f35b7;
}

.cajun-card-wide {
  grid-column: span 2;
}

.cajun-style-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: top center;
  background: #0b3b33;
}

.cajun-mobile-card img {
  aspect-ratio: 9 / 12;
}

.cajun-style-card div {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.cajun-style-card span {
  color: #c83a22;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cajun-style-card h3,
.cajun-style-card p {
  margin-bottom: 0;
}

.cajun-style-card h3 {
  font-size: 25px;
}

.cajun-style-card p {
  color: var(--muted);
}

.case-cajun .case-band {
  background: linear-gradient(90deg, #fff3dc 0%, #edf5ff 100%);
}

.case-kiosk .case-band {
  background: linear-gradient(90deg, #edf5ff 0%, #dff1e1 100%);
}

.case-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
}

.case-band-inner p:last-child {
  color: var(--muted);
  font-size: 20px;
}

.case-nav {
  background: var(--cream);
  padding-top: 0;
}

.case-nav-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.case-nav-card {
  display: grid;
  gap: 6px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(6, 46, 105, 0.12);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.case-nav-card.accent-cajun {
  border-left-color: #e94a2c;
}

.case-nav-card.accent-software {
  border-left-color: var(--teal);
}

.case-nav-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-nav-card strong {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
}

.software-gallery {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(6, 46, 105, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: top center;
  background: var(--paper);
}

.gallery-phone-card img {
  aspect-ratio: 10 / 13;
}

.gallery-card div {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.gallery-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin-bottom: 0;
  font-size: 24px;
}

@keyframes cajunFloat {
  0%,
  100% {
    transform: translateY(0) rotate(1.6deg);
  }

  50% {
    transform: translateY(-12px) rotate(0.8deg);
  }
}

@keyframes cajunFloatGumbo {
  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(10px) rotate(-1.8deg);
  }
}

@keyframes cajunMobileFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-9px) rotate(-3deg);
  }
}

@keyframes cajunBadgePulse {
  0%,
  100% {
    transform: rotate(3deg) scale(1);
  }

  50% {
    transform: rotate(1deg) scale(1.04);
  }
}

@keyframes cajunRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cajunStripe {
  to {
    background-position: 360px 0;
  }
}

@media (max-width: 980px) {
  .utility-inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px 20px 26px;
    background: var(--cream);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 45px rgba(11, 29, 43, 0.18);
  }

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

  .nav-links a {
    width: 100%;
    min-height: 46px;
    padding: 13px 16px;
  }

  .nav-phone {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 500px;
    background:
      linear-gradient(90deg, rgba(4, 24, 54, 0.98) 0%, rgba(4, 34, 74, 0.86) 56%, rgba(4, 34, 74, 0.36) 100%),
      url("assets/secure-web-it-hero.png") center right / cover no-repeat;
  }

  .hero-content {
    padding: 38px 0 42px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-statement {
    font-size: 34px;
  }

  .signal-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .intro-layout,
  .web-layout,
  .audience-layout,
  .detail-layout,
  .split-band,
  .contact-layout,
  .portfolio-hero-inner,
  .case-hero-inner,
  .case-band-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-grid,
  .timeline,
  .work-grid,
  .gallery-grid,
  .case-nav-inner {
    grid-template-columns: 1fr;
  }

  .gallery-card-wide {
    grid-column: auto;
  }

  .portfolio-hero-inner,
  .case-hero-inner {
    min-height: 0;
  }

  .portfolio-hero-stack {
    min-height: 560px;
  }

  .case-browser {
    justify-self: start;
  }

  .case-cajun .case-hero-inner {
    grid-template-columns: 1fr;
  }

  .cajun-showcase {
    max-width: 720px;
    min-height: 610px;
  }

  .cajun-style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cajun-card-wide {
    grid-column: 1 / -1;
  }

  .software-hero-inner {
    grid-template-columns: 1fr;
  }

  .software-device-stack {
    min-height: 410px;
  }

  .detail-aside {
    max-width: none;
  }

  .intro-layout p:last-child {
    margin-top: 0;
  }

  .repair-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .utility-inner span:nth-child(n + 3) {
    display: none;
  }

  .nav-inner {
    min-height: 102px;
  }

  .brand-logo {
    width: min(250px, 62vw);
    max-width: 62vw;
    height: auto;
    max-height: none;
  }

  .nav-links {
    inset: 100% 0 auto 0;
  }

  .hero {
    min-height: 0;
  }

  .subpage-hero-inner {
    min-height: 0;
    padding: 46px 0;
  }

  .hero-content {
    padding: 30px 0 34px;
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 24px;
  }

  .hero-statement {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .section-pad {
    padding: 64px 0;
  }

  .service-card,
  .process-grid article {
    padding: 24px;
  }

  .check-list,
  .audience-grid,
  .mock-cards,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .mock-hero {
    height: 170px;
    padding: 22px;
  }

  .portfolio-hero-stack {
    min-height: 430px;
  }

  .frame-cajun {
    width: 74%;
  }

  .frame-lhcc {
    width: 58%;
  }

  .frame-kiosk {
    width: 64%;
    bottom: 10px;
  }

  .software-device-stack {
    min-height: 350px;
  }

  .cajun-showcase {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .cajun-screen-main,
  .cajun-screen-gumbo {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
    transform: none;
    animation: none;
  }

  .cajun-mobile-shot {
    position: relative;
    bottom: auto;
    left: auto;
    justify-self: center;
    width: min(230px, 64%);
    transform: none;
    animation: none;
  }

  .cajun-badge {
    position: relative;
    top: auto;
    right: auto;
    order: -1;
    justify-self: start;
    transform: none;
    animation: none;
  }

  .cajun-style-grid {
    grid-template-columns: 1fr;
  }

  .cajun-card-wide {
    grid-column: auto;
  }

  .phone-frame {
    width: 36%;
    bottom: -8px;
  }

  .work-card-body,
  .case-nav-card,
  .gallery-card div,
  .cajun-style-card div {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-cajun .case-hero::after,
  .case-cajun .case-meta-strip span,
  .cajun-screen-main,
  .cajun-screen-gumbo,
  .cajun-mobile-shot,
  .cajun-badge,
  .cajun-style-card {
    animation: none;
  }
}
