@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap");

:root {
  --bg: #0c0b0a;
  --bg-elevated: #161311;
  --ink: #f4efe8;
  --muted: #b7aea3;
  --coral: #fa968e;
  --terracotta: #c84a32;
  --line: rgba(244, 239, 232, 0.12);
  --max: 1120px;
  --font-sans: "Outfit", sans-serif;
  --font-display: "Source Serif 4", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(200, 74, 50, 0.22), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(250, 150, 142, 0.12), transparent 50%),
    linear-gradient(180deg, #12100e 0%, var(--bg) 40%, #090807 100%);
  min-height: 100vh;
  line-height: 1.55;
}

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

a {
  color: var(--coral);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #ffc3bd;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(12, 11, 10, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  height: 44px;
  width: auto;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links .cta {
  color: var(--bg);
  background: var(--coral);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-links .cta:hover {
  color: var(--bg);
  background: #ffb4ad;
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.35) 0%, rgba(12, 11, 10, 0.55) 45%, rgba(12, 11, 10, 0.92) 100%),
    linear-gradient(90deg, rgba(12, 11, 10, 0.55), transparent 55%);
}

.hero-copy {
  padding: 5.5rem 0 3.5rem;
  max-width: 38rem;
  animation: rise 0.9s ease both;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--terracotta);
  color: #fff8f4;
}

.btn-primary:hover {
  background: #db5a40;
  color: #fff;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  padding: 4.5rem 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 2rem;
}

.services {
  display: grid;
  gap: 1rem;
}

.service {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
  animation: rise 0.7s ease both;
}

.service:last-child {
  border-bottom: 1px solid var(--line);
}

.service strong {
  color: var(--coral);
  font-size: 1.05rem;
}

.service span {
  color: var(--muted);
}

.clients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  align-items: center;
}

.clients figure {
  margin: 0;
  padding: 1rem;
  min-height: 96px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
}

.clients img {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.clients .dark-tile {
  background: #0a0a0a;
}

.contact-band {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem;
  background:
    linear-gradient(135deg, rgba(200, 74, 50, 0.18), transparent 45%),
    var(--bg-elevated);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.contact-band h2 {
  margin: 0 0 0.35rem;
}

.contact-band p {
  margin: 0;
  color: var(--muted);
}

.profile {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 2rem;
  align-items: start;
}

.profile img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.profile h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}

.profile p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.job {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  background: rgba(22, 19, 17, 0.7);
  margin-bottom: 1.5rem;
}

.job h2 {
  margin-top: 0;
}

.job h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.job ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.job li {
  margin: 0.35rem 0;
}

.meta {
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.page-hero {
  padding: 3.5rem 0 1rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 40rem;
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner-scan {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.banner-scan img {
  width: 100%;
  height: clamp(140px, 22vw, 240px);
  object-fit: cover;
}

.blog-list {
  display: grid;
  gap: 1rem;
}

.blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  background: rgba(22, 19, 17, 0.7);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  animation: rise 0.7s ease both;
}

.blog-card:hover {
  border-color: rgba(250, 150, 142, 0.45);
  background: rgba(28, 24, 21, 0.9);
  transform: translateY(-2px);
  color: inherit;
}

.blog-card .meta {
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.blog-card .read-more {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--coral);
  font-weight: 600;
  font-size: 0.92rem;
}

.post {
  /* Full site content column — title, deck, and embed share this width */
  width: 100%;
  max-width: var(--max);
}

.post-header {
  margin-bottom: 1.75rem;
  max-width: none;
}

.post-header .meta {
  margin-bottom: 0.65rem;
}

.post-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.post-header .deck {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
}

.embed-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 1.75rem 0 1.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #090807;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.embed-frame iframe {
  display: block;
  box-sizing: border-box;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100%;
  height: clamp(560px, 65vw, 780px) !important;
  border: 0;
}

.post-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

.post-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.service:nth-child(1) { animation-delay: 0.05s; }
.service:nth-child(2) { animation-delay: 0.1s; }
.service:nth-child(3) { animation-delay: 0.15s; }
.service:nth-child(4) { animation-delay: 0.2s; }
.service:nth-child(5) { animation-delay: 0.25s; }

@media (max-width: 720px) {
  .nav-links {
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .profile {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 36px;
  }

  .embed-frame iframe {
    height: min(78vh, 640px) !important;
  }
}
