/* 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.9rem 0;
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand span { color: var(--teal); }
.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 */
.hero {
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(0, 183, 195, 0.18), transparent 60%),
    linear-gradient(180deg, var(--mist), var(--white) 70%);
  padding: 4.5rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}
.hero p { font-size: 1.1rem; margin: 0 0 1.5rem; max-width: 36rem; }
.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);
}

.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; }
