/* Accrity Solutions — teal consulting palette from legacy ackrity.com */
:root {
  --teal: #00949d;
  --teal-bright: #00b7c3;
  --ink: #03191a;
  --text: #4a4a4a;
  --muted: #9aa7a7;
  --mist: #eff6f6;
  --white: #ffffff;
  --max: 1100px;
  --font: "Work Sans", system-ui, sans-serif;
  --display: "Space Grotesk", "Work Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-bright); }

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(3, 25, 26, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand img {
  width: 83px;
  height: auto;
  display: block;
}
.brand span { color: var(--teal); }
.brand-text { display: none; }
@media (min-width: 640px) {
  .brand-text { display: inline; }
  .brand img { width: 93px; }
}
.nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a[aria-current="page"] { color: var(--teal); }
.nav .cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
}
.nav .cta:hover { background: var(--teal-bright); }

/* Hero — brand-led first viewport */
.hero {
  background:
    radial-gradient(900px 420px at 85% 10%, rgba(0, 183, 195, 0.22), transparent 55%),
    radial-gradient(700px 380px at 5% 90%, rgba(0, 148, 157, 0.12), transparent 50%),
    linear-gradient(165deg, #062a2c 0%, #03191a 42%, #0a3d40 100%);
  padding: 4.75rem 0 4.25rem;
  color: #d7e6e6;
}
.hero--brand .hero-compose {
  max-width: 40rem;
}
.hero-brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.75rem, 8vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 0 0 1.25rem;
}
.hero-brand::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 4px;
  margin-top: 1rem;
  background: var(--teal-bright);
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  color: #e8f4f4;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  max-width: 28rem;
}
.hero-lead {
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: #a8c4c4;
  line-height: 1.55;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.hero-visual {
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  background:
    linear-gradient(135deg, rgba(0, 148, 157, 0.85), rgba(3, 25, 26, 0.75)),
    url("/images/why-choose-us.jpg") center/cover;
  box-shadow: 0 20px 50px rgba(3, 25, 26, 0.15);
}

.focus-list {
  display: grid;
  gap: 1.5rem;
}
.focus-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(3, 25, 26, 0.08);
}
.focus-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.focus-item .num {
  font-family: var(--display);
  color: var(--teal);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}
.focus-item h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
}
.focus-item p { margin: 0; }
.focus-item a { font-weight: 600; }

.section-mist {
  background: var(--mist);
}
.section-head--tight {
  margin-top: 2.25rem;
  margin-bottom: 1.25rem;
}
.case-block--feature {
  background: var(--white);
  border: 1px solid rgba(0, 148, 157, 0.22);
  box-shadow: 0 12px 36px rgba(3, 25, 26, 0.06);
}
.why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}
.why-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
  color: var(--text);
}
.why-list strong { color: var(--ink); }
.industries-inline {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40rem;
}

.btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
}
.btn:hover { background: var(--teal-bright); }
.btn-ghost {
  background: transparent;
  color: var(--teal) !important;
  border: 1px solid var(--teal);
  margin-left: 0.5rem;
}
.btn-ghost:hover {
  background: rgba(0, 148, 157, 0.08);
}

/* Sections */
section { padding: 3.5rem 0; }
.section-head { margin-bottom: 2rem; max-width: 40rem; }
.section-head h2 {
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.section-head p { margin: 0; }
.muted { color: var(--muted); }

.cards {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--mist);
  border: 1px solid rgba(3, 25, 26, 0.05);
  border-radius: 10px;
  padding: 1.35rem 1.25rem;
}
.card .num {
  font-family: var(--display);
  color: var(--teal);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.card h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.1rem;
}
.card p { margin: 0 0 1rem; }
.card a { font-weight: 600; }

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .copy { order: 2; }
}
.split img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 16px 40px rgba(3, 25, 26, 0.12);
}
.split h2 {
  font-family: var(--display);
  color: var(--ink);
  margin-top: 0;
}

.band {
  background: var(--ink);
  color: #d7e6e6;
  padding: 3rem 0;
}
.band h2 {
  font-family: var(--display);
  color: var(--white);
  margin: 0 0 0.5rem;
}
.band p { margin: 0 0 1.25rem; max-width: 36rem; }

.page-hero {
  background: linear-gradient(180deg, var(--mist), var(--white));
  padding: 3.25rem 0 1.5rem;
}
.page-hero h1 {
  font-family: var(--display);
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.prose { max-width: 46rem; }
.prose p { margin: 0 0 1rem; }
.stack { display: grid; gap: 1.5rem; }
.stack article {
  background: var(--mist);
  border-radius: 10px;
  padding: 1.25rem 1.35rem;
}
.stack h2 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}
.stack p { margin: 0; }

.contact-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-card {
  background: var(--mist);
  border-radius: 10px;
  padding: 1.5rem;
}
.contact-card h2 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}
.contact-card a { font-weight: 600; font-size: 1.05rem; }

.site-footer {
  border-top: 1px solid rgba(3, 25, 26, 0.08);
  padding: 1.75rem 0 2.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.footer-inner .brand { font-size: 1rem; }
.footer-inner .brand img { width: 64px; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.5rem;
}
.service-block, .case-block {
  background: var(--mist);
  border-radius: 10px;
  padding: 1.35rem 1.4rem;
  margin-bottom: 1.1rem;
}
.service-block h3, .case-block h3 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}
.service-block p, .case-block p { margin: 0 0 0.65rem; }
.service-block p:last-child, .case-block p:last-child { margin-bottom: 0; }
.label {
  font-weight: 600;
  color: var(--ink);
}
.note {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
}
.industries {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .industries { grid-template-columns: repeat(3, 1fr); }
}
