/* Orca Pod, LLC — palette derived from the hero photo:
   deep slate blue, glacier white, cold grey. */
:root {
  --ink: #0c1c26;
  --slate: #16303f;
  --slate-2: #24495c;
  --glacier: #f3f7f9;
  --grey: #8ea0aa;
  --grey-light: #c7d3d9;
  --accent: #6fb3c9;

  --font: 'Georgia', 'Times New Roman', serif;
  --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--slate);
  background: var(--glacier);
  line-height: 1.6;
}

h1, h2 {
  font-family: var(--font);
  font-weight: 400;
  margin: 0 0 0.5em;
}

a {
  color: inherit;
}

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

/* ---------- Header / nav ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.wordmark-mini {
  font-family: var(--font);
  font-size: 1.1rem;
  color: var(--glacier);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-cta {
  font-size: 0.9rem;
  color: var(--glacier);
  text-decoration: none;
  border: 1px solid rgba(243, 247, 249, 0.5);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  border-color: var(--glacier);
  background: rgba(243, 247, 249, 0.08);
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-picture,
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12, 28, 38, 0.05) 0%,
    rgba(12, 28, 38, 0.15) 40%,
    rgba(12, 28, 38, 0.78) 82%,
    rgba(12, 28, 38, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  color: var(--glacier);
  width: 100%;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: var(--glacier);
  margin-bottom: 0.4em;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  max-width: 34em;
  color: var(--grey-light);
  margin: 0 0 1.5em;
}

.hero-anchor {
  display: inline-block;
  color: var(--glacier);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(243, 247, 249, 0.5);
  padding-bottom: 2px;
}

.hero-anchor:hover {
  border-color: var(--glacier);
}

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

/* ---------- Sections ---------- */

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

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--ink);
}

/* Pillars */

.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 4rem;
}

@media (min-width: 700px) {
  .pillars { grid-template-columns: 1fr 1fr; }
}

.pillar p {
  color: var(--slate-2);
  max-width: 32em;
}

.pillar-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--slate-2);
  border-bottom: 1px solid var(--grey);
}

.pillar-link:hover { color: var(--ink); border-color: var(--ink); }

/* Portfolio */

.portfolio {
  background: var(--slate);
  color: var(--glacier);
  max-width: none;
  padding: 4.5rem 1.5rem;
}

.portfolio > h2,
.portfolio-inner h2 {
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
  color: var(--glacier);
  text-align: center;
  font-style: italic;
}

.cards {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  display: block;
  background: rgba(243, 247, 249, 0.06);
  border: 1px solid rgba(243, 247, 249, 0.12);
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  color: var(--glacier);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.card:hover {
  background: rgba(243, 247, 249, 0.1);
  border-color: rgba(243, 247, 249, 0.28);
  transform: translateY(-2px);
}

.card-static {
  opacity: 0.75;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.card-name {
  font-family: var(--font);
  font-size: 1.15rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--grey-light);
  margin: 0 0 1rem;
}

.card-domain {
  font-size: 0.8rem;
  color: var(--grey);
  font-family: var(--font-ui);
}

.tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.tag-live { background: rgba(111, 179, 201, 0.22); color: var(--accent); }
.tag-active { background: rgba(199, 211, 217, 0.18); color: var(--grey-light); }
.tag-soon { background: rgba(142, 160, 170, 0.18); color: var(--grey); }

/* Consulting */

.consulting-lede {
  max-width: 34em;
  color: var(--slate-2);
}

.consulting-scope {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

@media (min-width: 600px) {
  .consulting-scope { grid-template-columns: 1fr 1fr; }
}

.consulting-scope li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--slate);
}

.consulting-scope li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.consulting-cred {
  color: var(--slate-2);
  font-style: italic;
  max-width: 34em;
}

.consulting-cred a {
  color: var(--slate);
  text-decoration: underline;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  background: var(--ink);
  color: var(--glacier);
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.cta-button:hover { background: var(--slate-2); }

/* About */

.about p {
  max-width: 40em;
  color: var(--slate-2);
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: var(--grey-light);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact .wordmark-mini { color: var(--glacier); }

.footer-contact a {
  color: var(--grey-light);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-contact a:hover { color: var(--glacier); }

.footer-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
}

.footer-links a { text-decoration: none; color: var(--grey-light); }
.footer-links a:hover { color: var(--glacier); }
.footer-links span { color: var(--grey); }

.footer-copy {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  font-size: 0.78rem;
  color: var(--grey);
}
